aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources/FrontendStatus.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-03-11 22:45:54 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-03-11 22:45:54 +0000
commit0980594e3037839b361eae71646ccf960aaa2659 (patch)
treebe556b66116fc270362c79f38a8afb08020be4dc /lib/python/Components/Sources/FrontendStatus.py
parenta4c3836577b7fab796563c6657257cf7e4a9ee73 (diff)
downloadenigma2-0980594e3037839b361eae71646ccf960aaa2659.tar.gz
enigma2-0980594e3037839b361eae71646ccf960aaa2659.zip
signal quality is SNR, signal power is AGC
Diffstat (limited to 'lib/python/Components/Sources/FrontendStatus.py')
-rw-r--r--lib/python/Components/Sources/FrontendStatus.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/Sources/FrontendStatus.py b/lib/python/Components/Sources/FrontendStatus.py
index 8e29030a..3e469e0d 100644
--- a/lib/python/Components/Sources/FrontendStatus.py
+++ b/lib/python/Components/Sources/FrontendStatus.py
@@ -20,9 +20,9 @@ class FrontendStatus(Source):
if not status:
self.invalidate()
else:
- self.snr = status.get("tuner_signal_power")
- self.snr_db = status.get("tuner_signal_power_db")
- self.agc = status.get("tuner_signal_quality")
+ self.snr = status.get("tuner_signal_quality")
+ self.snr_db = status.get("tuner_signal_quality_db")
+ self.agc = status.get("tuner_signal_power")
self.ber = status.get("tuner_bit_error_rate")
self.lock = status.get("tuner_locked")
self.changed((self.CHANGED_ALL, ))