aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/TuneTest.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-02-20 14:17:18 +0100
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-02-20 14:17:18 +0100
commitb38a38eabbfc7cf4814d6bb9be90d857e8282f9d (patch)
treeb301a3511117ab1f4ec8657fcfa9b522115d91a0 /lib/python/Components/TuneTest.py
parent29d62cc699d7043a749e6f184925b7fd14b5daab (diff)
downloadenigma2-b38a38eabbfc7cf4814d6bb9be90d857e8282f9d.tar.gz
enigma2-b38a38eabbfc7cf4814d6bb9be90d857e8282f9d.zip
follow changes in module Tuner with added rolloff, pilot and system/modulation in DiseqcTester/TuneTest
Diffstat (limited to 'lib/python/Components/TuneTest.py')
-rw-r--r--lib/python/Components/TuneTest.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/python/Components/TuneTest.py b/lib/python/Components/TuneTest.py
index de7b0098..8e8644e3 100644
--- a/lib/python/Components/TuneTest.py
+++ b/lib/python/Components/TuneTest.py
@@ -4,8 +4,8 @@ class Tuner:
def __init__(self, frontend):
self.frontend = frontend
- # transponder = (frequency, symbolrate, polarisation, fec, inversion, orbpos, system, modulation)
- # 0 1 2 3 4 5 6 7
+ # transponder = (frequency, symbolrate, polarisation, fec, inversion, orbpos, system, modulation, rolloff, pilot, tsid, onid)
+ # 0 1 2 3 4 5 6 7 8 9 10 11
def tune(self, transponder):
if self.frontend:
print "tuning to transponder with data", transponder
@@ -102,8 +102,8 @@ class TuneTest:
pidsFailed = False
if self.checkPIDs:
if self.currTuned is not None:
- if self.tsid != self.currTuned[8] or self.onid != self.currTuned[9]:
- self.failedTune.append([self.currTuned, self.oldTuned, "pids_failed", {"real": (self.tsid, self.onid), "expected": (self.currTuned[8], self.currTuned[9])}])
+ if self.tsid != self.currTuned[10] or self.onid != self.currTuned[11]:
+ self.failedTune.append([self.currTuned, self.oldTuned, "pids_failed", {"real": (self.tsid, self.onid), "expected": (self.currTuned[10], self.currTuned[11])}])
pidsFailed = True
else:
self.successfullyTune.append([self.currTuned, self.oldTuned])
@@ -203,8 +203,8 @@ class TuneTest:
self.progressCallback((self.getProgressLength(), self.tuningtransponder, self.STATUS_START, self.currTuned))
self.timer.start(100, True)
- # transponder = (frequency, symbolrate, polarisation, fec, inversion, orbpos, <system>, <modulation>, <tsid>, <onid>)
- # 0 1 2 3 4 5 6 7 8 9
+ # transponder = (frequency, symbolrate, polarisation, fec, inversion, orbpos, <system>, <modulation>, <rolloff>, <pilot>, <tsid>, <onid>)
+ # 0 1 2 3 4 5 6 7 8 9 10 11
def addTransponder(self, transponder):
self.transponderlist.append(transponder)