From: Stefan Pluecken Date: Wed, 23 Nov 2005 15:38:45 +0000 (+0000) Subject: use setTunerLinked for tunerlinking X-Git-Tag: 2.6.0~4980 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/cbe7b975e72bb5ab4708396eb648fc8e6bc2548b use setTunerLinked for tunerlinking --- diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 5a18a454..061e4fb8 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -327,9 +327,11 @@ class NimManager: if (mode == 1): # linked if (len(self.getNimListOfType(self.nimType["DVB-S"], slotid)) > 0): print "Linking slot " + str(slotid) + " to " + str(nimmgr.getConfigPrefix(slotid).value) + self.sec.setTunerLinked(slotid, nimmgr.getConfigPrefix(slotid).value) # TODO call c++ to link nim in slot slotid with nim in slot nimmgr.getConfigPrefix(slotid).value def nimLinkedToChanged(self, slotid, val): print "Linking slot " + str(slotid) + " to " + str(val) + self.sec.setTunerLinked(slotid, val) # TODO call c++ to link nim in slot slotid with nim in slot val def nimDiseqcModeChanged(self, slotid, mode): #print "nimDiseqcModeChanged set to " + str(mode)