aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-10-06 20:06:19 +0200
committerghost <andreas.monzner@multimedia-labs.de>2010-10-06 21:23:34 +0200
commit3ce829b7f04b042739f7beea5af0586af5e283a9 (patch)
tree013f5bf877e74cf0f649fb67b01c3e9ea7fcb77b /lib/python/Components
parent0df93d3997437a2815a308d032dbfee364ca29ea (diff)
downloadenigma2-3ce829b7f04b042739f7beea5af0586af5e283a9.tar.gz
enigma2-3ce829b7f04b042739f7beea5af0586af5e283a9.zip
lib/python/Components/NimManager.py: add toneAmplitude option for 340 and 360mV
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/NimManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 805be4df..b75b65eb 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -1337,7 +1337,7 @@ def InitNimManager(nimmgr):
nim = config.Nims[x]
if slot.isCompatible("DVB-S"):
- nim.toneAmplitude = ConfigSelection([("9", "600mV"), ("8", "700mV"), ("7", "800mV"), ("6", "900mV"), ("5", "1100mV")], "7")
+ nim.toneAmplitude = ConfigSelection([("11", "340mV"), ("10", "360mV"), ("9", "600mV"), ("8", "700mV"), ("7", "800mV"), ("6", "900mV"), ("5", "1100mV")], "7")
nim.toneAmplitude.fe_id = x - empty_slots
nim.toneAmplitude.slot_id = x
nim.toneAmplitude.addNotifier(toneAmplitudeChanged)