diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-15 15:51:19 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-15 15:51:19 +0000 |
| commit | b9bda8a0d43be892f2e5d96ea45ba8d4b2fdae20 (patch) | |
| tree | 12b771f91ee8351764d8e0087cfd122b7ccfb263 /lib/dvb/idvb.h | |
| parent | c866e3ad3c089e189ff94d51cb125603b998f5c6 (diff) | |
| download | enigma2-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/dvb/idvb.h')
| -rw-r--r-- | lib/dvb/idvb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/dvb/idvb.h b/lib/dvb/idvb.h index d5f399c0..36b2bea1 100644 --- a/lib/dvb/idvb.h +++ b/lib/dvb/idvb.h @@ -465,7 +465,9 @@ public: virtual RESULT setSecSequence(const eSecCommandList &list)=0; #endif virtual int readFrontendData(int type)=0; - virtual PyObject *readTransponderData(bool original)=0; + virtual void getFrontendStatus(SWIG_PYOBJECT(ePyObject) dest)=0; + virtual void getTransponderData(SWIG_PYOBJECT(ePyObject) dest, bool original)=0; + virtual void getFrontendData(SWIG_PYOBJECT(ePyObject) dest)=0; #ifndef SWIG virtual RESULT getData(int num, int &data)=0; virtual RESULT setData(int num, int val)=0; |
