diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-10-11 00:35:15 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-10-11 00:35:15 +0000 |
| commit | 2d0ef7747f575fc5202433c58c676deadeaafb7e (patch) | |
| tree | b17229a25d90e2654d96f0a379c4e2b5451ac104 /lib/python/Components | |
| parent | 495f6c0ff7a37c224319af9f07a3e39fa5e804e1 (diff) | |
| download | enigma2-2d0ef7747f575fc5202433c58c676deadeaafb7e.tar.gz enigma2-2d0ef7747f575fc5202433c58c676deadeaafb7e.zip | |
add multisat scan setup for the case of using a dish positioner
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/ScanSetup.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/python/Components/ScanSetup.py b/lib/python/Components/ScanSetup.py index 7aa0fcb8..ed3a70f9 100644 --- a/lib/python/Components/ScanSetup.py +++ b/lib/python/Components/ScanSetup.py @@ -40,4 +40,9 @@ def InitScanSetup(): config.scan.ter.modulation = configElement("config.scan.ter.modulation", configSelection, 0, ("Auto", "16-QAM", "32-QAM", "64-QAM", "128-QAM", "256-QAM")) config.scan.ter.transmission = configElement("config.scan.ter.transmission", configSelection, 0, ("Auto", "2K", "8K")) config.scan.ter.guard = configElement("config.scan.ter.guard", configSelection, 0, ("Auto", "1/4", "1/8", "1/16", "1/32")) - config.scan.ter.hierarchy = configElement("config.scan.ter.hierarchy", configSelection, 0, ("Auto", "1", "2", "4"))
\ No newline at end of file + config.scan.ter.hierarchy = configElement("config.scan.ter.hierarchy", configSelection, 0, ("Auto", "1", "2", "4")) + + config.scan.scansat = {} + for sat in nimmanager.satList: + #print sat[1] + config.scan.scansat[sat[1]] = configElement("config.scan.scansat[" + str(sat[1]) + "]", configSelection, 0, ("yes", "no"))
\ No newline at end of file |
