diff options
Diffstat (limited to 'lib/python/Components/ScanSetup.py')
| -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 |
