aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/TuneTest.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-08-19 17:15:18 +0200
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-08-19 17:15:18 +0200
commit68d7a0e3c91ff1556c19a603e61d3c89d573f3b0 (patch)
tree8ed46bd965dcf1959c9c80d6a4d8e7a26afae726 /lib/python/Components/TuneTest.py
parent2e864cd1c1c498555cbee01b5a58dfe9e3f60ca9 (diff)
downloadenigma2-68d7a0e3c91ff1556c19a603e61d3c89d573f3b0.tar.gz
enigma2-68d7a0e3c91ff1556c19a603e61d3c89d573f3b0.zip
log signal quality during diseqc tester runs
Diffstat (limited to 'lib/python/Components/TuneTest.py')
-rw-r--r--lib/python/Components/TuneTest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Components/TuneTest.py b/lib/python/Components/TuneTest.py
index e3b7d9e3..f9ab3edb 100644
--- a/lib/python/Components/TuneTest.py
+++ b/lib/python/Components/TuneTest.py
@@ -95,7 +95,7 @@ class TuneTest:
else:
if dict["tuner_state"] == "LOSTLOCK" or dict["tuner_state"] == "FAILED":
self.tuningtransponder = self.nextTransponder()
- self.failedTune.append([self.currTuned, self.oldTuned, "tune_failed"])
+ self.failedTune.append([self.currTuned, self.oldTuned, "tune_failed", dict]) # last parameter is the frontend status)
if self.stopOnError != -1 and self.stopOnError <= len(self.failedTune):
stop = True
elif dict["tuner_state"] == "LOCKED":
@@ -103,14 +103,14 @@ class TuneTest:
if self.checkPIDs:
if self.currTuned is not None:
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])}])
+ self.failedTune.append([self.currTuned, self.oldTuned, "pids_failed", {"real": (self.tsid, self.onid), "expected": (self.currTuned[10], self.currTuned[11])}, dict]) # last parameter is the frontend status
pidsFailed = True
else:
- self.successfullyTune.append([self.currTuned, self.oldTuned])
+ self.successfullyTune.append([self.currTuned, self.oldTuned, dict]) # 3rd parameter is the frontend status
if self.stopOnSuccess != -1 and self.stopOnSuccess <= len(self.successfullyTune):
stop = True
elif not self.checkPIDs or (self.checkPids and not pidsFailed):
- self.successfullyTune.append([self.currTuned, self.oldTuned])
+ self.successfullyTune.append([self.currTuned, self.oldTuned, dict]) # 3rd parameter is the frontend status
if self.stopOnSuccess != -1 and self.stopOnSuccess <= len(self.successfullyTune):
stop = True
self.tuningtransponder = self.nextTransponder()