From 767f09427a5dbfa924bcf487c09491ed34a4a7ce Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Mon, 4 Dec 2006 22:44:46 +0000 Subject: [PATCH] comment out not yet implemented 12V Switch option --- lib/python/Components/NimManager.py | 10 +++++----- lib/python/Screens/Satconfig.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 5140406d..e5de83e0 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -186,10 +186,10 @@ class SecConfigure: sec.setLNBLOFH(currLnb.lofh.value * 1000) sec.setLNBThreshold(currLnb.threshold.value * 1000) - if currLnb.output_12v.value == "0V": - pass # nyi in drivers - elif currLnb.output_12v.value == "12V": - pass # nyi in drivers +# if currLnb.output_12v.value == "0V": +# pass # nyi in drivers +# elif currLnb.output_12v.value == "12V": +# pass # nyi in drivers if currLnb.increased_voltage.value: sec.setLNBIncreasedVoltage(lnbParam.ON) @@ -768,7 +768,7 @@ def InitNimManager(nimmgr): nim.advanced.lnb[x].lofl = ConfigInteger(default=9750, limits = (0, 99999)) nim.advanced.lnb[x].lofh = ConfigInteger(default=10600, limits = (0, 99999)) nim.advanced.lnb[x].threshold = ConfigInteger(default=11700, limits = (0, 99999)) - nim.advanced.lnb[x].output_12v = ConfigSelection(choices = [("0V", _("0 V")), ("12V", _("12 V"))], default="0V") +# nim.advanced.lnb[x].output_12v = ConfigSelection(choices = [("0V", _("0 V")), ("12V", _("12 V"))], default="0V") nim.advanced.lnb[x].increased_voltage = ConfigYesNo(default=False) nim.advanced.lnb[x].toneburst = ConfigSelection(choices = [("none", _("None")), ("A", _("A")), ("B", _("B"))], default = "none") nim.advanced.lnb[x].diseqcMode = ConfigSelection(choices = [("none", _("None")), ("1_0", _("1.0")), ("1_1", _("1.1")), ("1_2", _("1.2"))], default = "none") diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 226c3a82..7b0c9bc9 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -135,7 +135,7 @@ class NimSetup(Screen, ConfigListScreen): self.list.append(getConfigListEntry(_("LOF/L"), currLnb.lofl)) self.list.append(getConfigListEntry(_("LOF/H"), currLnb.lofh)) self.list.append(getConfigListEntry(_("Threshold"), currLnb.threshold)) - self.list.append(getConfigListEntry(_("12V Output"), currLnb.output_12v)) +# self.list.append(getConfigListEntry(_("12V Output"), currLnb.output_12v)) self.list.append(getConfigListEntry(_("Increased voltage"), currLnb.increased_voltage)) def fillAdvancedList(self): -- 2.30.2