aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/NimManager.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-23 15:38:45 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-23 15:38:45 +0000
commitcbe7b975e72bb5ab4708396eb648fc8e6bc2548b (patch)
treedfe34b121a6835fa34e4388db4390099c4c68f55 /lib/python/Components/NimManager.py
parente9b37cc9582c76462771c5970a57c036c5533142 (diff)
downloadenigma2-cbe7b975e72bb5ab4708396eb648fc8e6bc2548b.tar.gz
enigma2-cbe7b975e72bb5ab4708396eb648fc8e6bc2548b.zip
use setTunerLinked for tunerlinking
Diffstat (limited to 'lib/python/Components/NimManager.py')
-rw-r--r--lib/python/Components/NimManager.py2
1 files changed, 2 insertions, 0 deletions
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)