1 #include <lib/dvb/dvb.h>
2 #include <lib/dvb/sec.h>
3 #include <lib/dvb/rotor_calc.h>
4 #include <lib/dvb/dvbtime.h>
8 #if HAVE_DVB_API_VERSION < 3
9 #define FREQUENCY Frequency
11 #define FREQUENCY frequency
13 #include <lib/base/eerror.h>
18 #define eSecDebug(arg...) eDebug(arg)
20 #define eSecDebug(arg...)
23 DEFINE_REF(eDVBSatelliteEquipmentControl);
25 eDVBSatelliteEquipmentControl *eDVBSatelliteEquipmentControl::instance;
27 int eDVBSatelliteEquipmentControl::m_params[MAX_PARAMS];
29 defaults are set in python lib/python/Components/NimManager.py
30 in InitSecParams function via setParam call
33 void eDVBSatelliteEquipmentControl::setParam(int param, int value)
35 if (param >= 0 && param < MAX_PARAMS)
36 m_params[param]=value;
39 eDVBSatelliteEquipmentControl::eDVBSatelliteEquipmentControl(eSmartPtrList<eDVBRegisteredFrontend> &avail_frontends)
40 :m_lnbidx(-1), m_curSat(m_lnbs[0].m_satellites.end()), m_avail_frontends(avail_frontends), m_rotorMoving(false)
51 setLNBThreshold(11700000);
53 setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_0);
54 setToneburst(eDVBSatelliteDiseqcParameters::NO);
56 setCommittedCommand(eDVBSatelliteDiseqcParameters::BB);
57 setCommandOrder(0); // committed, toneburst
61 setVoltageMode(eDVBSatelliteSwitchParameters::HV);
62 setToneMode(eDVBSatelliteSwitchParameters::HILO);
68 setLNBThreshold(11700000);
70 setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_0);
71 setToneburst(eDVBSatelliteDiseqcParameters::NO);
73 setCommittedCommand(eDVBSatelliteDiseqcParameters::AB);
74 setCommandOrder(0); // committed, toneburst
78 setVoltageMode(eDVBSatelliteSwitchParameters::HV);
79 setToneMode(eDVBSatelliteSwitchParameters::HILO);
85 setLNBThreshold(11700000);
87 setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_2);
88 setToneburst(eDVBSatelliteDiseqcParameters::NO);
90 setCommittedCommand(eDVBSatelliteDiseqcParameters::AA);
91 setCommandOrder(0); // committed, toneburst
94 setLaDirection(eDVBSatelliteRotorParameters::NORTH);
95 setLoDirection(eDVBSatelliteRotorParameters::EAST);
98 setUseInputpower(true);
99 setInputpowerDelta(50);
102 setVoltageMode(eDVBSatelliteSwitchParameters::HV);
103 setToneMode(eDVBSatelliteSwitchParameters::HILO);
107 setVoltageMode(eDVBSatelliteSwitchParameters::HV);
108 setToneMode(eDVBSatelliteSwitchParameters::HILO);
112 setVoltageMode(eDVBSatelliteSwitchParameters::HV);
113 setToneMode(eDVBSatelliteSwitchParameters::HILO);
114 setRotorPosNum(1); // stored pos 1
117 static void checkLinkedParams(int direction, long &linked_ptr, int &ret, const eDVBFrontendParametersSatellite &sat, int csw, int ucsw, int toneburst, bool diseqc, bool rotor, int RotorPos)
119 eDVBRegisteredFrontend *linked_fe = (eDVBRegisteredFrontend*) linked_ptr;
120 if (linked_fe->m_inuse)
125 linked_fe->m_frontend->getData(eDVBFrontend::CSW, ocsw);
126 linked_fe->m_frontend->getData(eDVBFrontend::UCSW, oucsw);
127 linked_fe->m_frontend->getData(eDVBFrontend::TONEBURST, oToneburst);
129 eDebug("compare csw %02x == lcsw %02x",
132 eDebug("compare ucsw %02x == lucsw %02x\ncompare toneburst %02x == oToneburst %02x",
133 ucsw, oucsw, toneburst, oToneburst);
135 eDebug("compare pos %d == current pos %d",
136 sat.orbital_position, oRotorPos);
138 if ( (csw != ocsw) ||
139 ( diseqc && (ucsw != oucsw || toneburst != oToneburst) ) ||
140 ( rotor && RotorPos != sat.orbital_position ) )
142 // eDebug("can not tune this transponder with linked tuner in use!!");
146 // eDebug("OK .. can tune this transponder with linked tuner in use :)");
148 linked_fe->m_frontend->getData(direction, (long&)linked_ptr);
151 int eDVBSatelliteEquipmentControl::canTune(const eDVBFrontendParametersSatellite &sat, iDVBFrontend *fe, int slot_id )
153 int ret=0, satcount=0;
155 for (int idx=0; idx <= m_lnbidx; ++idx )
158 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
159 if ( lnb_param.slot_mask & slot_id ) // lnb for correct tuner?
161 eDVBSatelliteDiseqcParameters &di_param = lnb_param.m_diseqc_parameters;
163 satcount += lnb_param.m_satellites.size();
165 std::map<int, eDVBSatelliteSwitchParameters>::iterator sit =
166 lnb_param.m_satellites.find(sat.orbital_position);
167 if ( sit != lnb_param.m_satellites.end())
172 satpos_depends_ptr=-1,
173 csw = di_param.m_committed_cmd,
174 ucsw = di_param.m_uncommitted_cmd,
175 toneburst = di_param.m_toneburst_param,
178 fe->getData(eDVBFrontend::ROTOR_POS, curRotorPos);
179 fe->getData(eDVBFrontend::LINKED_PREV_PTR, linked_prev_ptr);
180 fe->getData(eDVBFrontend::LINKED_NEXT_PTR, linked_next_ptr);
181 fe->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, satpos_depends_ptr);
183 if ( sat.frequency > lnb_param.m_lof_threshold )
185 if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
190 if (di_param.m_diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
193 if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
194 csw = 0xF0 | (csw << 2);
196 if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
199 if ( di_param.m_diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2 ) // ROTOR
203 if (rotor && curRotorPos != -1)
204 ret -= abs(curRotorPos-sat.orbital_position);
212 while (ret && linked_prev_ptr != -1) // check for linked tuners..
213 checkLinkedParams(eDVBFrontend::LINKED_PREV_PTR, linked_prev_ptr, ret, sat, csw, ucsw, toneburst, diseqc, rotor, curRotorPos);
215 while (ret && linked_next_ptr != -1) // check for linked tuners..
216 checkLinkedParams(eDVBFrontend::LINKED_NEXT_PTR, linked_next_ptr, ret, sat, csw, ucsw, toneburst, diseqc, rotor, curRotorPos);
219 if (satpos_depends_ptr != -1)
221 eDVBRegisteredFrontend *satpos_depends_to_fe = (eDVBRegisteredFrontend*) satpos_depends_ptr;
222 if ( satpos_depends_to_fe->m_inuse )
224 if (!rotor || curRotorPos != sat.orbital_position)
226 // eDebug("can not tune this transponder ... rotor on other tuner is positioned to %d", oRotorPos);
231 // eDebug("OK .. can tune this transponder satpos is correct :)");
236 int lof = sat.frequency > lnb_param.m_lof_threshold ?
237 lnb_param.m_lof_hi : lnb_param.m_lof_lo;
238 int tuner_freq = abs(sat.frequency - lof);
239 // eDebug("tuner freq %d", tuner_freq);
240 if (tuner_freq < 900000 || tuner_freq > 2200000)
243 // eDebug("Transponder not tuneable with this lnb... %d Khz out of tuner range",
252 if (ret && m_not_linked_slot_mask & slot_id)
253 ret += 5; // increase score for tuners with direct sat connection
257 bool need_turn_fast(int turn_speed)
259 if (turn_speed == eDVBSatelliteRotorParameters::FAST)
261 else if (turn_speed != eDVBSatelliteRotorParameters::SLOW)
263 int begin = turn_speed >> 16; // high word is start time
264 int end = turn_speed&0xFFFF; // low word is end time
265 time_t now_time = ::time(0);
267 localtime_r(&now_time, &nowTime);
268 int now = (nowTime.tm_hour + 1) * 60 + nowTime.tm_min + 1;
269 bool neg = end <= begin;
275 if ((now >= begin && now < end) ^ neg)
281 #define VOLTAGE(x) (lnb_param.m_increased_voltage ? iDVBFrontend::voltage##x##_5 : iDVBFrontend::voltage##x)
283 RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPARAMETERS &parm, const eDVBFrontendParametersSatellite &sat, int slot_id, unsigned int tunetimeout)
285 for (int idx=0; idx <= m_lnbidx; ++idx )
287 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
288 if (!(lnb_param.slot_mask & slot_id)) // lnb for correct tuner?
290 eDVBSatelliteDiseqcParameters &di_param = lnb_param.m_diseqc_parameters;
291 eDVBSatelliteRotorParameters &rotor_param = lnb_param.m_rotor_parameters;
293 std::map<int, eDVBSatelliteSwitchParameters>::iterator sit =
294 lnb_param.m_satellites.find(sat.orbital_position);
295 if ( sit != lnb_param.m_satellites.end())
297 eDVBSatelliteSwitchParameters &sw_param = sit->second;
298 bool doSetFrontend = true;
299 bool doSetVoltageToneFrontend = m_not_linked_slot_mask & slot_id;
300 bool allowDiseqc1_2 = true;
302 voltage = iDVBFrontend::voltageOff,
303 tone = iDVBFrontend::toneOff,
304 csw = di_param.m_committed_cmd,
305 ucsw = di_param.m_uncommitted_cmd,
306 toneburst = di_param.m_toneburst_param,
312 satposDependPtr = -1;
314 frontend.getData(eDVBFrontend::CSW, lastcsw);
315 frontend.getData(eDVBFrontend::UCSW, lastucsw);
316 frontend.getData(eDVBFrontend::TONEBURST, lastToneburst);
317 frontend.getData(eDVBFrontend::ROTOR_CMD, lastRotorCmd);
318 frontend.getData(eDVBFrontend::ROTOR_POS, curRotorPos);
319 frontend.getData(eDVBFrontend::SATPOS_DEPENDS_PTR, satposDependPtr);
321 if (satposDependPtr != -1 && !doSetVoltageToneFrontend)
323 allowDiseqc1_2 = false;
324 doSetVoltageToneFrontend = true;
327 if ( sat.frequency > lnb_param.m_lof_threshold )
331 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_hi;
333 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_lo;
335 parm.FREQUENCY = abs(parm.FREQUENCY);
337 frontend.setData(eDVBFrontend::FREQ_OFFSET, sat.frequency - parm.FREQUENCY);
339 if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
342 if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_14V
343 || ( sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical
344 && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV ) )
345 voltage = VOLTAGE(13);
346 else if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_18V
347 || ( !(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical)
348 && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV ) )
349 voltage = VOLTAGE(18);
350 if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::ON)
351 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && (band&1) ) )
352 tone = iDVBFrontend::toneOn;
353 else if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::OFF)
354 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && !(band&1) ) )
355 tone = iDVBFrontend::toneOff;
357 eSecCommandList sec_sequence;
359 if (di_param.m_diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
361 if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
362 csw = 0xF0 | (csw << 2);
364 if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
368 (di_param.m_committed_cmd != eDVBSatelliteDiseqcParameters::SENDNO);
369 bool changed_csw = send_csw && csw != lastcsw;
372 (di_param.m_uncommitted_cmd && di_param.m_diseqc_mode > eDVBSatelliteDiseqcParameters::V1_0);
373 bool changed_ucsw = send_ucsw && ucsw != lastucsw;
376 (di_param.m_toneburst_param != eDVBSatelliteDiseqcParameters::NO);
377 bool changed_burst = send_burst && toneburst != lastToneburst;
379 int send_mask = 0; /*
382 4 send toneburst first
383 8 send toneburst at end */
384 if (changed_burst) // toneburst first and toneburst changed
386 if (di_param.m_command_order&1)
400 if ((di_param.m_command_order&4) && send_csw)
402 if (di_param.m_command_order==4 && send_burst)
407 if ( di_param.m_use_fast
408 && di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO
410 && ((csw / 4) == (lastcsw / 4)) )
411 eDebug("dont send committed cmd (fast diseqc)");
415 if (!(di_param.m_command_order&4) && send_ucsw)
417 if (!(di_param.m_command_order&1) && send_burst)
423 eDebugNoNewLine("sendmask: ");
424 for (int i=3; i >= 0; --i)
425 if ( send_mask & (1<<i) )
426 eDebugNoNewLine("1");
428 eDebugNoNewLine("0");
432 if (doSetVoltageToneFrontend)
435 bool useGotoXX = false;
436 if ( di_param.m_diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2
437 && !sat.no_rotor_command_on_tune
440 if (sw_param.m_rotorPosNum) // we have stored rotor pos?
441 RotorCmd=sw_param.m_rotorPosNum;
442 else // we must calc gotoxx cmd
444 eDebug("Entry for %d,%d? not in Rotor Table found... i try gotoXX?", sat.orbital_position / 10, sat.orbital_position % 10 );
447 double SatLon = abs(sat.orbital_position)/10.00,
448 SiteLat = rotor_param.m_gotoxx_parameters.m_latitude,
449 SiteLon = rotor_param.m_gotoxx_parameters.m_longitude;
451 if ( rotor_param.m_gotoxx_parameters.m_la_direction == eDVBSatelliteRotorParameters::SOUTH )
454 if ( rotor_param.m_gotoxx_parameters.m_lo_direction == eDVBSatelliteRotorParameters::WEST )
455 SiteLon = 360 - SiteLon;
457 eDebug("siteLatitude = %lf, siteLongitude = %lf, %lf degrees", SiteLat, SiteLon, SatLon );
458 double satHourAngle =
459 calcSatHourangle( SatLon, SiteLat, SiteLon );
460 eDebug("PolarmountHourAngle=%lf", satHourAngle );
462 static int gotoXTable[10] =
463 { 0x00, 0x02, 0x03, 0x05, 0x06, 0x08, 0x0A, 0x0B, 0x0D, 0x0E };
465 if (SiteLat >= 0) // Northern Hemisphere
467 int tmp=(int)round( fabs( 180 - satHourAngle ) * 10.0 );
468 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
470 if (satHourAngle < 180) // the east
475 else // Southern Hemisphere
477 if (satHourAngle < 180) // the east
479 int tmp=(int)round( fabs( satHourAngle ) * 10.0 );
480 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
485 int tmp=(int)round( fabs( 360 - satHourAngle ) * 10.0 );
486 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
490 eDebug("RotorCmd = %04x", RotorCmd);
496 int vlt = iDVBFrontend::voltageOff;
497 eSecCommand::pair compare;
499 compare.tone = iDVBFrontend::toneOff;
500 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
501 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
502 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
504 if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
506 if (rotor_param.m_inputpower_parameters.m_use)
507 vlt = VOLTAGE(18); // in input power mode set 18V for measure input power
509 vlt = VOLTAGE(13); // in normal mode start turning with 13V
514 // check if voltage is already correct..
515 compare.voltage = vlt;
517 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
519 // check if voltage is disabled
520 compare.voltage = iDVBFrontend::voltageOff;
522 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
524 // voltage is changed... use DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS
525 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, vlt) );
526 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS]) );
527 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +3) );
529 // voltage was disabled.. use DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS
530 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, vlt) );
531 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS]) );
533 for (int seq_repeat = 0; seq_repeat < (di_param.m_seq_repeat?2:1); ++seq_repeat)
537 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
538 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
548 loops <<= di_param.m_repeats;
550 for ( int i = 0; i < loops;) // fill commands...
552 eDVBDiseqcCommand diseqc;
553 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
555 diseqc.data[0] = i ? 0xE1 : 0xE0;
556 diseqc.data[1] = 0x10;
557 if ( (send_mask & 2) && (di_param.m_command_order & 4) )
559 diseqc.data[2] = 0x39;
560 diseqc.data[3] = ucsw;
562 else if ( send_mask & 1 )
564 diseqc.data[2] = 0x38;
565 diseqc.data[3] = csw;
567 else // no committed command confed.. so send uncommitted..
569 diseqc.data[2] = 0x39;
570 diseqc.data[3] = ucsw;
572 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
578 if (diseqc.data[2] == 0x38 && (send_mask & 2))
580 else if (diseqc.data[2] == 0x39 && (send_mask & 1))
582 int tmp = m_params[DELAY_BETWEEN_DISEQC_REPEATS];
585 int delay = di_param.m_repeats ? (tmp - 54) / 2 : tmp; // standard says 100msek between two repeated commands
586 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay) );
588 diseqc.data[3]=(cmd==0x38) ? csw : ucsw;
589 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
592 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay ) );
594 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
596 else // delay 120msek when no command is in repeat gap
597 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, tmp) );
600 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
603 if ( send_mask & 8 ) // toneburst at end of sequence
605 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
606 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
611 eDebug("RotorCmd %02x, lastRotorCmd %02lx", RotorCmd, lastRotorCmd);
612 if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
614 eSecCommand::pair compare;
618 compare.tone = iDVBFrontend::toneOff;
619 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
620 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
621 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
623 compare.voltage = iDVBFrontend::voltageOff;
625 // the next is a check if voltage is switched off.. then we first set a voltage :)
626 // else we set voltage after all diseqc stuff..
627 sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
629 if (rotor_param.m_inputpower_parameters.m_use)
630 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) ); // set 18V for measure input power
632 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) ); // in normal mode start turning with 13V
634 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD]) ); // wait 750ms when voltage was disabled
635 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +9) ); // no need to send stop rotor cmd and recheck voltage
638 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD]) ); // wait 700ms when diseqc changed
640 eDVBDiseqcCommand diseqc;
641 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
643 diseqc.data[0] = 0xE0;
644 diseqc.data[1] = 0x31; // positioner
645 diseqc.data[2] = 0x60; // stop
646 sec_sequence.push_back( eSecCommand(eSecCommand::IF_ROTORPOS_VALID_GOTO, +5) );
647 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
648 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
649 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
650 // wait 150msec after send rotor stop cmd
651 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_MOTOR_STOP_CMD]) );
653 diseqc.data[0] = 0xE0;
654 diseqc.data[1] = 0x31; // positioner
658 diseqc.data[2] = 0x6E; // drive to angular position
659 diseqc.data[3] = ((RotorCmd & 0xFF00) / 0x100);
660 diseqc.data[4] = RotorCmd & 0xFF;
665 diseqc.data[2] = 0x6B; // goto stored sat position
666 diseqc.data[3] = RotorCmd;
667 diseqc.data[4] = 0x00;
670 if ( rotor_param.m_inputpower_parameters.m_use )
671 { // use measure rotor input power to detect rotor state
672 bool turn_fast = need_turn_fast(rotor_param.m_inputpower_parameters.m_turning_speed);
673 eSecCommand::rotor cmd;
674 eSecCommand::pair compare;
675 compare.voltage = VOLTAGE(18);
677 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
678 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
679 // measure idle power values
680 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) ); // wait 150msec after voltage change
681 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 1) );
684 sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
685 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
686 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) ); // wait 150msec before measure
687 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 0) );
689 sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
690 ////////////////////////////
691 sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
692 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_DISEQC_RETRYS, m_params[MOTOR_COMMAND_RETRIES]) ); // 2 retries
693 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
694 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
695 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 40) ); // 2 seconds rotor start timout
697 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) ); // 50msec delay
698 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
699 cmd.direction=1; // check for running rotor
700 cmd.deltaA=rotor_param.m_inputpower_parameters.m_delta;
703 sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) ); // check if rotor has started
704 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) ); // timeout .. we assume now the rotor is already at the correct position
705 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) ); // goto loop start
706 sec_sequence.push_back( eSecCommand(eSecCommand::IF_NO_MORE_ROTOR_DISEQC_RETRYS_GOTO, turn_fast ? 9 : 8 ) ); // timeout .. we assume now the rotor is already at the correct position
707 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -8) ); // goto loop start
710 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
711 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*20) ); // 2 minutes running timeout
712 // rotor running loop
713 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) ); // wait 50msec
714 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
715 cmd.direction=0; // check for stopped rotor
717 sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );
718 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) ); // timeout ? this should never happen
719 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) ); // running loop start
720 /////////////////////
721 sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
722 sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
725 { // use normal turning mode
726 doSetVoltageToneFrontend=false;
728 eSecCommand::rotor cmd;
729 eSecCommand::pair compare;
730 compare.voltage = VOLTAGE(13);
732 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
733 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
734 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD]) ); // wait 150msec after voltage change
736 sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
737 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
738 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
740 compare.voltage = voltage;
742 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // correct final voltage?
743 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 2000) ); // wait 2 second before set high voltage
744 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
747 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
748 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
749 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
750 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
752 cmd.direction=1; // check for running rotor
756 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*4) ); // 2 minutes running timeout
757 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 250) ); // 250msec delay
758 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TUNER_LOCKED_GOTO, cmd ) );
759 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +3 ) );
760 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -3) ); // goto loop start
761 sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
762 sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
764 frontend.setData(eDVBFrontend::NEW_ROTOR_CMD, RotorCmd);
765 frontend.setData(eDVBFrontend::NEW_ROTOR_POS, sat.orbital_position);
772 frontend.setData(eDVBFrontend::CSW, csw);
773 frontend.setData(eDVBFrontend::UCSW, ucsw);
774 frontend.setData(eDVBFrontend::TONEBURST, di_param.m_toneburst_param);
776 if (doSetVoltageToneFrontend)
778 eSecCommand::pair compare;
779 compare.voltage = voltage;
781 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // voltage already correct ?
782 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
783 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_VOLTAGE_CHANGE]) );
785 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
786 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
787 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
792 sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT, tunetimeout) );
793 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
795 frontend.setSecSequence(sec_sequence);
801 eDebug("found no useable satellite configuration for orbital position (%d)", sat.orbital_position );
805 RESULT eDVBSatelliteEquipmentControl::clear()
807 eSecDebug("eDVBSatelliteEquipmentControl::clear()");
808 for (int i=0; i <= m_lnbidx; ++i)
810 m_lnbs[i].m_satellites.clear();
811 m_lnbs[i].slot_mask = 0;
815 m_not_linked_slot_mask=0;
817 //reset some tuner configuration
818 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
821 if (!strcmp(it->m_frontend->getDescription(), "BCM4501 (internal)") && !it->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp) && tmp != -1)
823 FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
824 if (!f || fwrite("B", 1, 1, f) != 1)
825 eDebug("set /proc/stb/tsmux/lnb_b_input to B failed!! (%m)");
828 eDebug("set /proc/stb/tsmux/lnb_b_input to B OK");
832 it->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, -1);
833 it->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, -1);
834 it->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, -1);
835 it->m_frontend->setData(eDVBFrontend::ROTOR_POS, -1);
836 it->m_frontend->setData(eDVBFrontend::ROTOR_CMD, -1);
842 /* LNB Specific Parameters */
843 RESULT eDVBSatelliteEquipmentControl::addLNB()
845 if ( (m_lnbidx+1) < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)))
846 m_curSat=m_lnbs[++m_lnbidx].m_satellites.end();
849 eDebug("no more LNB free... cnt is %d", m_lnbidx);
852 eSecDebug("eDVBSatelliteEquipmentControl::addLNB(%d)", m_lnbidx);
856 RESULT eDVBSatelliteEquipmentControl::setLNBSlotMask(int slotmask)
858 eSecDebug("eDVBSatelliteEquipmentControl::setLNBSlotMask(%d)", slotmask);
859 if ( currentLNBValid() )
860 m_lnbs[m_lnbidx].slot_mask = slotmask;
866 RESULT eDVBSatelliteEquipmentControl::setLNBLOFL(int lofl)
868 eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFL(%d)", lofl);
869 if ( currentLNBValid() )
870 m_lnbs[m_lnbidx].m_lof_lo = lofl;
876 RESULT eDVBSatelliteEquipmentControl::setLNBLOFH(int lofh)
878 eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFH(%d)", lofh);
879 if ( currentLNBValid() )
880 m_lnbs[m_lnbidx].m_lof_hi = lofh;
886 RESULT eDVBSatelliteEquipmentControl::setLNBThreshold(int threshold)
888 eSecDebug("eDVBSatelliteEquipmentControl::setLNBThreshold(%d)", threshold);
889 if ( currentLNBValid() )
890 m_lnbs[m_lnbidx].m_lof_threshold = threshold;
896 RESULT eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(bool onoff)
898 eSecDebug("eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(%d)", onoff);
899 if ( currentLNBValid() )
900 m_lnbs[m_lnbidx].m_increased_voltage = onoff;
906 /* DiSEqC Specific Parameters */
907 RESULT eDVBSatelliteEquipmentControl::setDiSEqCMode(int diseqcmode)
909 eSecDebug("eDVBSatelliteEquipmentControl::setDiSEqcMode(%d)", diseqcmode);
910 if ( currentLNBValid() )
911 m_lnbs[m_lnbidx].m_diseqc_parameters.m_diseqc_mode = (eDVBSatelliteDiseqcParameters::t_diseqc_mode)diseqcmode;
917 RESULT eDVBSatelliteEquipmentControl::setToneburst(int toneburst)
919 eSecDebug("eDVBSatelliteEquipmentControl::setToneburst(%d)", toneburst);
920 if ( currentLNBValid() )
921 m_lnbs[m_lnbidx].m_diseqc_parameters.m_toneburst_param = (eDVBSatelliteDiseqcParameters::t_toneburst_param)toneburst;
927 RESULT eDVBSatelliteEquipmentControl::setRepeats(int repeats)
929 eSecDebug("eDVBSatelliteEquipmentControl::setRepeats(%d)", repeats);
930 if ( currentLNBValid() )
931 m_lnbs[m_lnbidx].m_diseqc_parameters.m_repeats=repeats;
937 RESULT eDVBSatelliteEquipmentControl::setCommittedCommand(int command)
939 eSecDebug("eDVBSatelliteEquipmentControl::setCommittedCommand(%d)", command);
940 if ( currentLNBValid() )
941 m_lnbs[m_lnbidx].m_diseqc_parameters.m_committed_cmd=command;
947 RESULT eDVBSatelliteEquipmentControl::setUncommittedCommand(int command)
949 eSecDebug("eDVBSatelliteEquipmentControl::setUncommittedCommand(%d)", command);
950 if ( currentLNBValid() )
951 m_lnbs[m_lnbidx].m_diseqc_parameters.m_uncommitted_cmd = command;
957 RESULT eDVBSatelliteEquipmentControl::setCommandOrder(int order)
959 eSecDebug("eDVBSatelliteEquipmentControl::setCommandOrder(%d)", order);
960 if ( currentLNBValid() )
961 m_lnbs[m_lnbidx].m_diseqc_parameters.m_command_order=order;
967 RESULT eDVBSatelliteEquipmentControl::setFastDiSEqC(bool onoff)
969 eSecDebug("eDVBSatelliteEquipmentControl::setFastDiSEqc(%d)", onoff);
970 if ( currentLNBValid() )
971 m_lnbs[m_lnbidx].m_diseqc_parameters.m_use_fast=onoff;
977 RESULT eDVBSatelliteEquipmentControl::setSeqRepeat(bool onoff)
979 eSecDebug("eDVBSatelliteEquipmentControl::setSeqRepeat(%d)", onoff);
980 if ( currentLNBValid() )
981 m_lnbs[m_lnbidx].m_diseqc_parameters.m_seq_repeat = onoff;
987 /* Rotor Specific Parameters */
988 RESULT eDVBSatelliteEquipmentControl::setLongitude(float longitude)
990 eSecDebug("eDVBSatelliteEquipmentControl::setLongitude(%f)", longitude);
991 if ( currentLNBValid() )
992 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_longitude=longitude;
998 RESULT eDVBSatelliteEquipmentControl::setLatitude(float latitude)
1000 eSecDebug("eDVBSatelliteEquipmentControl::setLatitude(%f)", latitude);
1001 if ( currentLNBValid() )
1002 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_latitude=latitude;
1008 RESULT eDVBSatelliteEquipmentControl::setLoDirection(int direction)
1010 eSecDebug("eDVBSatelliteEquipmentControl::setLoDirection(%d)", direction);
1011 if ( currentLNBValid() )
1012 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_lo_direction=direction;
1018 RESULT eDVBSatelliteEquipmentControl::setLaDirection(int direction)
1020 eSecDebug("eDVBSatelliteEquipmentControl::setLaDirection(%d)", direction);
1021 if ( currentLNBValid() )
1022 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_la_direction=direction;
1028 RESULT eDVBSatelliteEquipmentControl::setUseInputpower(bool onoff)
1030 eSecDebug("eDVBSatelliteEquipmentControl::setUseInputpower(%d)", onoff);
1031 if ( currentLNBValid() )
1032 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_use=onoff;
1038 RESULT eDVBSatelliteEquipmentControl::setInputpowerDelta(int delta)
1040 eSecDebug("eDVBSatelliteEquipmentControl::setInputpowerDelta(%d)", delta);
1041 if ( currentLNBValid() )
1042 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_delta=delta;
1048 /* Satellite Specific Parameters */
1049 RESULT eDVBSatelliteEquipmentControl::addSatellite(int orbital_position)
1051 eSecDebug("eDVBSatelliteEquipmentControl::addSatellite(%d)", orbital_position);
1052 if ( currentLNBValid() )
1054 std::map<int, eDVBSatelliteSwitchParameters>::iterator it =
1055 m_lnbs[m_lnbidx].m_satellites.find(orbital_position);
1056 if ( it == m_lnbs[m_lnbidx].m_satellites.end() )
1058 std::pair<std::map<int, eDVBSatelliteSwitchParameters>::iterator, bool > ret =
1059 m_lnbs[m_lnbidx].m_satellites.insert(
1060 std::pair<int, eDVBSatelliteSwitchParameters>(orbital_position, eDVBSatelliteSwitchParameters())
1063 m_curSat = ret.first;
1075 RESULT eDVBSatelliteEquipmentControl::setVoltageMode(int mode)
1077 eSecDebug("eDVBSatelliteEquipmentControl::setVoltageMode(%d)", mode);
1078 if ( currentLNBValid() && m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1079 m_curSat->second.m_voltage_mode = (eDVBSatelliteSwitchParameters::t_voltage_mode)mode;
1086 RESULT eDVBSatelliteEquipmentControl::setToneMode(int mode)
1088 eSecDebug("eDVBSatelliteEquipmentControl::setToneMode(%d)", mode);
1089 if ( currentLNBValid() )
1091 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1092 m_curSat->second.m_22khz_signal = (eDVBSatelliteSwitchParameters::t_22khz_signal)mode;
1101 RESULT eDVBSatelliteEquipmentControl::setRotorPosNum(int rotor_pos_num)
1103 eSecDebug("eDVBSatelliteEquipmentControl::setRotorPosNum(%d)", rotor_pos_num);
1104 if ( currentLNBValid() )
1106 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1107 m_curSat->second.m_rotorPosNum=rotor_pos_num;
1116 RESULT eDVBSatelliteEquipmentControl::setRotorTurningSpeed(int speed)
1118 eSecDebug("eDVBSatelliteEquipmentControl::setRotorTurningSpeed(%d)", speed);
1119 if ( currentLNBValid() )
1120 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_turning_speed = speed;
1128 int orb_pos, lofl, lofh;
1129 sat_compare(int o, int lofl, int lofh)
1130 :orb_pos(o), lofl(lofl), lofh(lofh)
1132 sat_compare(const sat_compare &x)
1133 :orb_pos(x.orb_pos), lofl(x.lofl), lofh(x.lofh)
1135 bool operator < (const sat_compare & cmp) const
1137 if (orb_pos == cmp.orb_pos)
1139 if ( abs(lofl-cmp.lofl) < 200000 )
1141 if (abs(lofh-cmp.lofh) < 200000)
1143 return lofh<cmp.lofh;
1145 return lofl<cmp.lofl;
1147 return orb_pos < cmp.orb_pos;
1151 PyObject *eDVBSatelliteEquipmentControl::get_exclusive_satellites(int tu1, int tu2)
1157 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1159 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1163 else if (cnt == tu2)
1169 // check for linked tuners
1174 p1->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp);
1176 p1 = (eDVBRegisteredFrontend*)tmp;
1185 p2->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp);
1187 p2 = (eDVBRegisteredFrontend*)tmp;
1197 // check for rotor dependency
1198 p1->m_frontend->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, tmp1);
1200 p1 = (eDVBRegisteredFrontend*)tmp1;
1201 p2->m_frontend->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, tmp2);
1203 p2 = (eDVBRegisteredFrontend*)tmp2;
1206 int tu1_mask = 1 << p1->m_frontend->getSlotID(),
1207 tu2_mask = 1 << p2->m_frontend->getSlotID();
1208 std::set<sat_compare> tu1sats, tu2sats;
1209 std::list<sat_compare> tu1difference, tu2difference;
1210 std::insert_iterator<std::list<sat_compare> > insert1(tu1difference, tu1difference.begin()),
1211 insert2(tu2difference, tu2difference.begin());
1212 for (int idx=0; idx <= m_lnbidx; ++idx )
1214 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
1215 for (std::map<int, eDVBSatelliteSwitchParameters>::iterator sit(lnb_param.m_satellites.begin());
1216 sit != lnb_param.m_satellites.end(); ++sit)
1218 if ( lnb_param.slot_mask & tu1_mask )
1219 tu1sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1220 if ( lnb_param.slot_mask & tu2_mask )
1221 tu2sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1224 std::set_difference(tu1sats.begin(), tu1sats.end(),
1225 tu2sats.begin(), tu2sats.end(),
1227 std::set_difference(tu2sats.begin(), tu2sats.end(),
1228 tu1sats.begin(), tu1sats.end(),
1230 if (!tu1sats.empty() || !tu2sats.empty())
1233 ret = PyList_New(2+tu1difference.size()+tu2difference.size());
1235 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu1difference.size()));
1236 for(std::list<sat_compare>::iterator it(tu1difference.begin()); it != tu1difference.end(); ++it)
1237 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1239 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu2difference.size()));
1240 for(std::list<sat_compare>::iterator it(tu2difference.begin()); it != tu2difference.end(); ++it)
1241 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1249 ret = PyList_New(2);
1250 PyList_SET_ITEM(ret, 0, PyInt_FromLong(0));
1251 PyList_SET_ITEM(ret, 1, PyInt_FromLong(0));
1256 RESULT eDVBSatelliteEquipmentControl::setTunerLinked(int tu1, int tu2)
1258 eSecDebug("eDVBSatelliteEquipmentControl::setTunerLinked(%d, %d)", tu1, tu2);
1261 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1263 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
1265 if (it->m_frontend->getSlotID() == tu1)
1267 else if (it->m_frontend->getSlotID() == tu2)
1272 p1->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, (long)p2);
1273 p2->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, (long)p1);
1274 if (!strcmp(p1->m_frontend->getDescription(), p2->m_frontend->getDescription()) && !strcmp(p1->m_frontend->getDescription(), "BCM4501 (internal)"))
1276 FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
1277 if (!f || fwrite("A", 1, 1, f) != 1)
1278 eDebug("set /proc/stb/tsmux/lnb_b_input to A failed!! (%m)");
1281 eDebug("set /proc/stb/tsmux/lnb_b_input to A OK");
1291 RESULT eDVBSatelliteEquipmentControl::setTunerDepends(int tu1, int tu2)
1293 eSecDebug("eDVBSatelliteEquipmentControl::setTunerDepends(%d, %d)", tu1, tu2);
1297 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1299 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
1301 if (it->m_frontend->getSlotID() == tu1)
1303 else if (it->m_frontend->getSlotID() == tu2)
1308 p1->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p2);
1309 p2->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p1);
1315 void eDVBSatelliteEquipmentControl::setSlotNotLinked(int slot_no)
1317 eSecDebug("eDVBSatelliteEquipmentControl::setSlotNotLinked(%d)", slot_no);
1318 m_not_linked_slot_mask |= (1 << slot_no);
1321 bool eDVBSatelliteEquipmentControl::isRotorMoving()
1323 return m_rotorMoving;
1326 void eDVBSatelliteEquipmentControl::setRotorMoving(bool b)