X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/aa5f0da5970746434fe4deea234a98b35857c473..64fcd10afb958be39748d0d9887d4ed5cf9779fc:/lib/dvb/frontend.h diff --git a/lib/dvb/frontend.h b/lib/dvb/frontend.h index 2cccf885..6d683267 100644 --- a/lib/dvb/frontend.h +++ b/lib/dvb/frontend.h @@ -56,7 +56,7 @@ class eDVBFrontend: public iDVBFrontend, public Object eSecCommandList m_sec_sequence; - int m_data[9]; /* when satellite frontend then + int m_data[10]; /* when satellite frontend then data[0] = lastcsw -> state of the committed switch data[1] = lastucsw -> state of the uncommitted switch data[2] = lastToneburst -> current state of toneburst switch @@ -65,10 +65,12 @@ class eDVBFrontend: public iDVBFrontend, public Object data[5] = curRotorCmd data[6] = curRotorPos data[7] = linkedToTunerNo - data[8] = dependsToTunerNo (just satpos.. for rotor with twin lnb) */ + data[8] = dependsToTunerNo (just satpos.. for rotor with twin lnb) + data[9] = previousFrequencyOffset */ int m_idleInputpower[2]; // 13V .. 18V int m_runningInputpower; + int m_timeoutCount; // needed for timeout int m_retryCount; // diseqc retry for rotor int m_curVoltage; @@ -85,6 +87,9 @@ public: RESULT getFrontendType(int &type); RESULT tune(const iDVBFrontendParameters &where); + RESULT prepare_sat(const eDVBFrontendParametersSatellite &); + RESULT prepare_cable(const eDVBFrontendParametersCable &); + RESULT prepare_terrestrial(const eDVBFrontendParametersTerrestrial &); RESULT connectStateChange(const Slot1 &stateChange, ePtr &connection); RESULT getState(int &state); RESULT setTone(int tone); @@ -96,7 +101,9 @@ public: RESULT getData(int num, int &data); RESULT setData(int num, int val); - int readFrontendData(int type); // bitErrorRate, signalPower, signalQuality + int readFrontendData(int type); // bitErrorRate, signalPower, signalQuality, Locked, Synced + PyObject *readTransponderData(bool original); + int isCompatibleWith(ePtr &feparm); int getID() { return m_fe; }