aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ServiceInfo.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-15 15:51:19 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-15 15:51:19 +0000
commitb9bda8a0d43be892f2e5d96ea45ba8d4b2fdae20 (patch)
tree12b771f91ee8351764d8e0087cfd122b7ccfb263 /lib/python/Screens/ServiceInfo.py
parentc866e3ad3c089e189ff94d51cb125603b998f5c6 (diff)
downloadenigma2-b9bda8a0d43be892f2e5d96ea45ba8d4b2fdae20.tar.gz
enigma2-b9bda8a0d43be892f2e5d96ea45ba8d4b2fdae20.zip
change iFrontendInformation api
getFrontendData(bool) is now splitted in three seperate calls getFrontendData() returns the frontend number and frontend type in a dict getFrontendStatus() return signal quality, signal power, bit error rate, lock state, sync state, frontend state in a dict getTransponderData(bool) when the bool is true it returns a dict with the original tuned transponder data, when false the transponderdata read out from the frontend driver getAll(bool) is a sum of the three single calls and the direct replacement of the old getFrontendData call
Diffstat (limited to 'lib/python/Screens/ServiceInfo.py')
-rw-r--r--lib/python/Screens/ServiceInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/ServiceInfo.py b/lib/python/Screens/ServiceInfo.py
index fa948150..af53621a 100644
--- a/lib/python/Screens/ServiceInfo.py
+++ b/lib/python/Screens/ServiceInfo.py
@@ -161,7 +161,7 @@ class ServiceInfo(Screen):
def showFrontendData(self, real):
if self.type == TYPE_SERVICE_INFO:
- frontendData = self.feinfo and self.feinfo.getFrontendData(real)
+ frontendData = self.feinfo and self.feinfo.getAll(real)
Labels = self.getFEData(frontendData)
self.fillList(Labels)