X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5..d2c297e62af0b7325ae058fdd5656044f0917bdd:/lib/dvb/frontend.h diff --git a/lib/dvb/frontend.h b/lib/dvb/frontend.h index ee7f945a..c702970b 100644 --- a/lib/dvb/frontend.h +++ b/lib/dvb/frontend.h @@ -1,11 +1,15 @@ #ifndef __dvb_frontend_h #define __dvb_frontend_h +#include #include +#include -class eDVBFrontendParameters: public virtual iDVBFrontendParameters +class eSecCommandList; + +class eDVBFrontendParameters: public iDVBFrontendParameters { - DECLARE_REF; + DECLARE_REF(eDVBFrontendParameters); union { eDVBFrontendParametersSatellite sat; @@ -21,29 +25,59 @@ public: RESULT getDVBC(eDVBFrontendParametersCable &p) const; RESULT getDVBT(eDVBFrontendParametersTerrestrial &p) const; - RESULT setDVBS(eDVBFrontendParametersSatellite &p); - RESULT setDVBC(eDVBFrontendParametersCable &p); - RESULT setDVBT(eDVBFrontendParametersTerrestrial &p); + RESULT setDVBS(const eDVBFrontendParametersSatellite &p); + RESULT setDVBC(const eDVBFrontendParametersCable &p); + RESULT setDVBT(const eDVBFrontendParametersTerrestrial &p); RESULT calculateDifference(const iDVBFrontendParameters *parm, int &diff) const; RESULT getHash(unsigned long &hash) const; }; -class eDVBFrontend: public virtual iDVBFrontend, public Object +class eDVBFrontend: public iDVBFrontend, public Object { - DECLARE_REF; + DECLARE_REF(eDVBFrontend); int m_type; + int m_fe; int m_fd; + char m_filename[128]; +#if HAVE_DVB_API_VERSION < 3 + int m_secfd; + char m_secfilename[128]; +#endif + + FRONTENDPARAMETERS parm; int m_state; Signal1 m_stateChanged; ePtr m_sec; eSocketNotifier *m_sn; int m_tuning; eTimer *m_timeout; - + eTimer *m_tuneTimer; + + eSecCommandList m_sec_sequence; + + int m_data[8]; /* 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 + data[3] = newRotorCmd -> last sent rotor cmd + data[4] = newRotorPos -> current Rotor Position + data[5] = curRotorCmd + data[6] = curRotorPos + data[7] = linkedToTunerNo */ + + int m_idleInputpower[2]; // 13V .. 18V + int m_runningInputpower; + int m_timeoutCount; // needed for timeout + int m_curVoltage; + void feEvent(int); void timeout(); + void tuneLoop(); // called by m_tuneTimer + void setFrontend(); + int readInputpower(); + bool setSecSequencePos(int steps); public: eDVBFrontend(int adap, int fe, int &ok); virtual ~eDVBFrontend(); @@ -55,7 +89,18 @@ public: RESULT setTone(int tone); RESULT setVoltage(int voltage); RESULT sendDiseqc(const eDVBDiseqcCommand &diseqc); + RESULT sendToneburst(int burst); RESULT setSEC(iDVBSatelliteEquipmentControl *sec); + RESULT setSecSequence(const eSecCommandList &list); + RESULT getData(int num, int &data); + RESULT setData(int num, int val); + + int readFrontendData(int type); // bitErrorRate, signalPower, signalQuality + int isCompatibleWith(ePtr &feparm); + int getID() { return m_fe; } + + int openFrontend(); + int closeFrontend(); }; #endif