add lockState and syncState to getFrontendInfo call
[enigma2.git] / lib / dvb / frontend.h
index da9c703414fe8b7fec08252b5975e4f7ab06a946..8c5b757a6b532bd7e3c69389e62874215089e739 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef __dvb_frontend_h
 #define __dvb_frontend_h
 
-#include <config.h>
 #include <lib/dvb/idvb.h>
 #include <lib/dvb/sec.h>
 
@@ -40,9 +39,12 @@ class eDVBFrontend: public iDVBFrontend, public Object
        int m_type;
        int m_fe;
        int m_fd;
+       char m_filename[128];
 #if HAVE_DVB_API_VERSION < 3
        int m_secfd;
+       char m_sec_filename[128];
 #endif
+
        FRONTENDPARAMETERS parm;
        int m_state;
        Signal1<void,iDVBFrontend*> m_stateChanged;
@@ -54,18 +56,22 @@ class eDVBFrontend: public iDVBFrontend, public Object
 
        eSecCommandList m_sec_sequence;
 
-       int m_data[7]; /* 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
                data[3] = newRotorCmd -> last sent rotor cmd
                data[4] = newRotorPos -> current Rotor Position
                data[5] = curRotorCmd
-               data[6] = curRotorPos */
+               data[6] = curRotorPos
+               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);
@@ -80,6 +86,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<void,iDVBFrontend*> &stateChange, ePtr<eConnection> &connection);
        RESULT getState(int &state);
        RESULT setTone(int tone);
@@ -90,8 +99,15 @@ public:
        RESULT setSecSequence(const eSecCommandList &list);
        RESULT getData(int num, int &data);
        RESULT setData(int num, int val);
-       
+
+       int readFrontendData(int type); // bitErrorRate, signalPower, signalQuality, Locked, Synced
+       PyObject *readTransponderData();
+
+       int isCompatibleWith(ePtr<iDVBFrontendParameters> &feparm);
        int getID() { return m_fe; }
+
+       int openFrontend();
+       int closeFrontend();
 };
 
 #endif