X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/7290c1872d4f6ac37c8090e1cc2e95aeddf6e814..bafa2efb0fcfef6e502552345243ddd7164d3a0b:/lib/dvb/frontend.h diff --git a/lib/dvb/frontend.h b/lib/dvb/frontend.h index 7862e2ea..2cccf885 100644 --- a/lib/dvb/frontend.h +++ b/lib/dvb/frontend.h @@ -1,7 +1,6 @@ #ifndef __dvb_frontend_h #define __dvb_frontend_h -#include #include #include @@ -43,7 +42,7 @@ class eDVBFrontend: public iDVBFrontend, public Object char m_filename[128]; #if HAVE_DVB_API_VERSION < 3 int m_secfd; - char m_secfilename[128]; + char m_sec_filename[128]; #endif FRONTENDPARAMETERS parm; @@ -57,7 +56,7 @@ class eDVBFrontend: public iDVBFrontend, public Object eSecCommandList m_sec_sequence; - int m_data[8]; /* when satellite frontend then + int m_data[9]; /* 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,11 +64,13 @@ class eDVBFrontend: public iDVBFrontend, public Object data[4] = newRotorPos -> current Rotor Position data[5] = curRotorCmd data[6] = curRotorPos - data[7] = linkedToTunerNo */ + data[7] = linkedToTunerNo + data[8] = dependsToTunerNo (just satpos.. for rotor with twin lnb) */ 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; void feEvent(int); @@ -100,7 +101,7 @@ public: int getID() { return m_fe; } int openFrontend(); - void closeFrontend(); + int closeFrontend(); }; #endif