X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/94f8049fca5c1522aef72334ab4f4697600618c0..ba1b105a176e5f62faf9d6d1f4c1a4c19764a2e4:/lib/dvb/sec.h diff --git a/lib/dvb/sec.h b/lib/dvb/sec.h index ab1f1ac3..499e3737 100644 --- a/lib/dvb/sec.h +++ b/lib/dvb/sec.h @@ -21,6 +21,7 @@ public: UPDATE_CURRENT_ROTORPARAMS, INVALIDATE_CURRENT_ROTORPARMS, IF_ROTORPOS_VALID_GOTO, IF_TUNER_LOCKED_GOTO, + IF_TONE_GOTO, IF_NOT_TONE_GOTO, START_TUNE_TIMEOUT }; int cmd; @@ -33,7 +34,12 @@ public: }; struct pair { - int voltage; + union + { + int voltage; + int tone; + int val; + }; int steps; }; union @@ -246,8 +252,6 @@ class eDVBSatelliteEquipmentControl: public iDVBSatelliteEquipmentControl eDVBSatelliteEquipmentControl(); ~eDVBSatelliteEquipmentControl(); #endif - // helper function for setTunerLinked and setTunerDepends - RESULT setDependencyPointers( int no1, int no2, int dest_data_byte ); public: #ifndef SWIG eDVBSatelliteEquipmentControl(eSmartPtrList &avail_frontends); @@ -290,7 +294,7 @@ public: RESULT setTunerLinked(int from, int to); RESULT setTunerDepends(int from, int to); - PyObject *get_different_satellites(int tu1, int tu2); + PyObject *get_exclusive_satellites(int tu1, int tu2); void setRotorMoving(bool); // called from the frontend's bool isRotorMoving(); };