+ RESULT prepare(iDVBFrontend &frontend, FRONTENDPARAMETERS &parm, eDVBFrontendParametersSatellite &sat, int frontend_id);
+ int canTune(const eDVBFrontendParametersSatellite &feparm, iDVBFrontend *, int frontend_id);
+ bool currentLNBValid() { return m_lnbidx > -1 && m_lnbidx < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)); }
+#endif
+ static eDVBSatelliteEquipmentControl *getInstance() { return instance; }
+ RESULT clear();
+/* LNB Specific Parameters */
+ RESULT addLNB();
+ RESULT setLNBTunerMask(int tunermask);
+ RESULT setLNBLOFL(int lofl);
+ RESULT setLNBLOFH(int lofh);
+ RESULT setLNBThreshold(int threshold);
+ RESULT setLNBIncreasedVoltage(bool onoff);
+/* DiSEqC Specific Parameters */
+ RESULT setDiSEqCMode(int diseqcmode);
+ RESULT setToneburst(int toneburst);
+ RESULT setRepeats(int repeats);
+ RESULT setCommittedCommand(int command);
+ RESULT setUncommittedCommand(int command);
+ RESULT setCommandOrder(int order);
+ RESULT setFastDiSEqC(bool onoff);
+ RESULT setSeqRepeat(bool onoff); // send the complete switch sequence twice (without rotor command)
+/* Rotor Specific Parameters */
+ RESULT setLongitude(float longitude);
+ RESULT setLatitude(float latitude);
+ RESULT setLoDirection(int direction);
+ RESULT setLaDirection(int direction);
+ RESULT setUseInputpower(bool onoff);
+ RESULT setInputpowerDelta(int delta); // delta between running and stopped rotor
+/* Satellite Specific Parameters */
+ RESULT addSatellite(int orbital_position);
+ RESULT setVoltageMode(int mode);
+ RESULT setToneMode(int mode);
+ RESULT setRotorPosNum(int rotor_pos_num);
+/* Tuner Specific Parameters */
+ RESULT setTunerLinked(int from, int to);
+ RESULT setTunerDepends(int from, int to);
+
+ void setRotorMoving(bool); // called from the frontend's
+ bool isRotorMoving();