add stop service
[enigma2.git] / lib / dvb / frontend.h
index 9036dc3ec5bbdf3b4e7a1b7442a7a35fc176c1dd..c091227bfbd844a78ffe594760bfe72b4a672d98 100644 (file)
@@ -3,10 +3,13 @@
 
 #include <config.h>
 #include <lib/dvb/idvb.h>
+#include <lib/dvb/sec.h>
+
+class eSecCommandList;
 
 class eDVBFrontendParameters: public iDVBFrontendParameters
 {
-       DECLARE_REF;
+       DECLARE_REF(eDVBFrontendParameters);
        union
        {
                eDVBFrontendParametersSatellite sat;
@@ -33,21 +36,43 @@ public:
 
 class eDVBFrontend: public iDVBFrontend, public Object
 {
-       DECLARE_REF;
+       DECLARE_REF(eDVBFrontend);
        int m_type;
        int m_fd;
 #if HAVE_DVB_API_VERSION < 3
        int m_secfd;
 #endif
+       FRONTENDPARAMETERS parm;
        int m_state;
        Signal1<void,iDVBFrontend*> m_stateChanged;
        ePtr<iDVBSatelliteEquipmentControl> m_sec;
        eSocketNotifier *m_sn;
        int m_tuning;
        eTimer *m_timeout;
-       
+       eTimer *m_tuneTimer;
+
+       eSecCommandList m_sec_sequence;
+
+       int m_data[7]; /* 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 */
+
+       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();
@@ -59,7 +84,11 @@ 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);
 };
 
 #endif