make eDVBResourceManager accessible from python (needed for allocate a raw iDVBChannel)
[enigma2.git] / lib / dvb / frontend.h
index eaedac94439fd7ac0856a7aae6e68d884d262f85..87814005270747b797975a8f02cbd90872c1d541 100644 (file)
@@ -1,12 +1,7 @@
 #ifndef __dvb_frontend_h
 #define __dvb_frontend_h
 
-#include <config.h>
 #include <lib/dvb/idvb.h>
-#include <lib/dvb/sec.h>
-
-class eSecCommandList;
-
 class eDVBFrontendParameters: public iDVBFrontendParameters
 {
        DECLARE_REF(eDVBFrontendParameters);
@@ -34,6 +29,11 @@ public:
        RESULT getHash(unsigned long &hash) const;
 };
 
+#ifndef SWIG
+
+#include <lib/dvb/sec.h>
+class eSecCommandList;
+
 class eDVBFrontend: public iDVBFrontend, public Object
 {
        DECLARE_REF(eDVBFrontend);
@@ -57,7 +57,7 @@ class eDVBFrontend: public iDVBFrontend, public Object
 
        eSecCommandList m_sec_sequence;
 
-       int m_data[8]; /* 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,11 +65,15 @@ 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)
+               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;
 
        void feEvent(int);
@@ -84,6 +88,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);
@@ -95,7 +102,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<iDVBFrontendParameters> &feparm);
        int getID() { return m_fe; }
 
@@ -103,4 +112,5 @@ public:
        int closeFrontend();
 };
 
+#endif // SWIG
 #endif