non blocking diseqc and sec stuff
[enigma2.git] / lib / dvb / frontend.h
index 9036dc3ec5bbdf3b4e7a1b7442a7a35fc176c1dd..1a68f89e2e1d61578fc3b8eafd7c2fc00d5aa469 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,26 @@ 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;
+
        void feEvent(int);
        void timeout();
+       eSecCommandList m_sec_sequence;
+       void tuneLoop();  // called by m_tuneTimer
+       void setFrontend();
 public:
        eDVBFrontend(int adap, int fe, int &ok);        
        virtual ~eDVBFrontend();
@@ -59,7 +67,9 @@ 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);
 };
 
 #endif