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, eSmartPtrList<eDVBRegisteredFrontend> &avail_simulate_frontends)
40 :m_lnbidx(-1), m_curSat(m_lnbs[0].m_satellites.end()), m_avail_frontends(avail_frontends), m_avail_simulate_frontends(avail_simulate_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 #define eSecDebugNoSimulate(x...) \
124 // eDebugNoNewLine("SIMULATE:"); \
128 int eDVBSatelliteEquipmentControl::canTune(const eDVBFrontendParametersSatellite &sat, iDVBFrontend *fe, int slot_id, int *highest_score_lnb)
130 bool simulate = ((eDVBFrontend*)fe)->is_simulate();
131 bool direct_connected = m_not_linked_slot_mask & slot_id;
132 int score=0, satcount=0;
134 if (highest_score_lnb)
135 *highest_score_lnb = -1;
137 eSecDebugNoSimulate("canTune %d", slot_id);
139 for (int idx=0; idx <= m_lnbidx; ++idx )
142 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
143 if ( lnb_param.slot_mask & slot_id ) // lnb for correct tuner?
146 eDVBSatelliteDiseqcParameters &di_param = lnb_param.m_diseqc_parameters;
148 eSecDebugNoSimulate("lnb %d found", idx);
150 satcount += lnb_param.m_satellites.size();
152 std::map<int, eDVBSatelliteSwitchParameters>::iterator sit =
153 lnb_param.m_satellites.find(sat.orbital_position);
154 if ( sit != lnb_param.m_satellites.end())
160 satpos_depends_ptr=-1,
161 csw = di_param.m_committed_cmd,
162 ucsw = di_param.m_uncommitted_cmd,
163 toneburst = di_param.m_toneburst_param,
166 eSecDebugNoSimulate("sat %d found", sat.orbital_position);
167 fe->getData(eDVBFrontend::LINKED_PREV_PTR, linked_prev_ptr);
168 fe->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, satpos_depends_ptr);
170 if ( sat.frequency > lnb_param.m_lof_threshold )
172 if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
175 if (di_param.m_diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
178 if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
179 csw = 0xF0 | (csw << 2);
181 if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
184 if ( di_param.m_diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2 ) // ROTOR
195 eSecDebugNoSimulate("ret1 %d", ret);
197 if (direct_connected) // frontend with direct connection?
202 eSecDebugNoSimulate("direct");
203 fe->getData(eDVBFrontend::ROTOR_POS, curRotorPos);
204 fe->getData(eDVBFrontend::LINKED_NEXT_PTR, linked_next_ptr);
205 fe->getData(eDVBFrontend::CSW, ocsw);
206 fe->getData(eDVBFrontend::UCSW, oucsw);
207 fe->getData(eDVBFrontend::TONEBURST, oToneburst);
208 while (ret && linked_prev_ptr != -1) // check for linked tuners..
210 eDVBRegisteredFrontend *linked_fe = (eDVBRegisteredFrontend*) linked_prev_ptr;
211 if (linked_fe->m_inuse)
213 if ( (csw != ocsw) ||
214 ( diseqc && (ucsw != oucsw || toneburst != oToneburst) ) ||
215 ( rotor && curRotorPos != sat.orbital_position ) )
220 linked_fe->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, (long&)linked_prev_ptr);
222 eSecDebugNoSimulate("ret2 %d", ret);
223 while (ret && linked_next_ptr != -1) // check for linked tuners..
225 eDVBRegisteredFrontend *linked_fe = (eDVBRegisteredFrontend*) linked_next_ptr;
226 if (linked_fe->m_inuse)
228 if ( (csw != ocsw) ||
229 ( diseqc && (ucsw != oucsw || toneburst != oToneburst) ) ||
230 ( rotor && curRotorPos != sat.orbital_position ) )
235 linked_fe->m_frontend->getData(eDVBFrontend::LINKED_NEXT_PTR, (long&)linked_next_ptr);
237 eSecDebugNoSimulate("ret3 %d", ret);
239 else // linked frontend..
244 while (linked_prev_ptr != -1)
246 eDVBRegisteredFrontend *linked_fe = (eDVBRegisteredFrontend*) linked_prev_ptr;
247 linked_fe->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, (long&)linked_prev_ptr);
248 if (linked_prev_ptr == -1)
250 iDVBFrontend *sec_fe = linked_fe->m_frontend;
251 sec_fe->getData(eDVBFrontend::ROTOR_POS, curRotorPos);
252 if (linked_fe->m_inuse)
254 sec_fe->getData(eDVBFrontend::CSW, ocsw);
255 sec_fe->getData(eDVBFrontend::UCSW, oucsw);
256 sec_fe->getData(eDVBFrontend::TONEBURST, oToneburst);
257 eSecDebug("(%ld != %ld) || \n(%d && (%ld != %ld || %ld != %ld) ) ||\n( %d && %ld != %d ) )",
258 csw, ocsw, diseqc, ucsw, oucsw, toneburst, oToneburst, rotor, curRotorPos, sat.orbital_position);
259 if ( (csw != ocsw) ||
260 ( diseqc && (ucsw != oucsw || toneburst != oToneburst) ) ||
261 ( rotor && curRotorPos != sat.orbital_position ) )
268 eSecDebugNoSimulate("ret4 %d", ret);
272 if (satpos_depends_ptr != -1)
274 eSecDebugNoSimulate("satpos depends");
275 eDVBRegisteredFrontend *satpos_depends_to_fe = (eDVBRegisteredFrontend*) satpos_depends_ptr;
276 if ( satpos_depends_to_fe->m_inuse )
278 if (!direct_connected)
279 satpos_depends_to_fe->m_frontend->getData(eDVBFrontend::ROTOR_POS, curRotorPos);
280 if (!rotor || curRotorPos != sat.orbital_position)
283 eSecDebugNoSimulate("ret5 %d", ret);
286 if (ret && rotor && curRotorPos != -1 && (direct_connected || satpos_depends_ptr == -1) ) // direct conntected or loopthrough!
287 ret -= abs(curRotorPos-sat.orbital_position);
289 eSecDebugNoSimulate("ret6 %d", ret);
293 int lof = sat.frequency > lnb_param.m_lof_threshold ?
294 lnb_param.m_lof_hi : lnb_param.m_lof_lo;
295 int tuner_freq = abs(sat.frequency - lof);
296 if (tuner_freq < 900000 || tuner_freq > 2200000)
300 eSecDebugNoSimulate("ret %d, score old %d", ret, score);
304 if (highest_score_lnb)
305 *highest_score_lnb = idx;
307 eSecDebugNoSimulate("score new %d", score);
311 if (score && satcount)
312 score -= (satcount-1);
313 if (score && direct_connected)
314 score += 5; // increase score for tuners with direct sat connection
315 eSecDebugNoSimulate("final score %d", score);
319 bool need_turn_fast(int turn_speed)
321 if (turn_speed == eDVBSatelliteRotorParameters::FAST)
323 else if (turn_speed != eDVBSatelliteRotorParameters::SLOW)
325 int begin = turn_speed >> 16; // high word is start time
326 int end = turn_speed&0xFFFF; // low word is end time
327 time_t now_time = ::time(0);
329 localtime_r(&now_time, &nowTime);
330 int now = (nowTime.tm_hour + 1) * 60 + nowTime.tm_min + 1;
331 bool neg = end <= begin;
337 if ((now >= begin && now < end) ^ neg)
343 #define VOLTAGE(x) (lnb_param.m_increased_voltage ? iDVBFrontend::voltage##x##_5 : iDVBFrontend::voltage##x)
345 #define eDebugNoSimulate(x...) \
352 // eDebugNoNewLine("SIMULATE:"); \
356 RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPARAMETERS &parm, const eDVBFrontendParametersSatellite &sat, int slot_id, unsigned int tunetimeout)
358 bool simulate = ((eDVBFrontend*)&frontend)->is_simulate();
360 if (canTune(sat, &frontend, slot_id, &lnb_idx))
362 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[lnb_idx];
363 eDVBSatelliteDiseqcParameters &di_param = lnb_param.m_diseqc_parameters;
364 eDVBSatelliteRotorParameters &rotor_param = lnb_param.m_rotor_parameters;
366 std::map<int, eDVBSatelliteSwitchParameters>::iterator sit =
367 lnb_param.m_satellites.find(sat.orbital_position);
368 if ( sit != lnb_param.m_satellites.end())
370 eDVBSatelliteSwitchParameters &sw_param = sit->second;
371 bool doSetFrontend = true;
372 bool doSetVoltageToneFrontend = true;
373 bool sendDiSEqC = false;
374 bool forceChanged = false;
376 voltage = iDVBFrontend::voltageOff,
377 tone = iDVBFrontend::toneOff,
378 csw = di_param.m_committed_cmd,
379 ucsw = di_param.m_uncommitted_cmd,
380 toneburst = di_param.m_toneburst_param,
386 satposDependPtr = -1;
387 iDVBFrontend *sec_fe=&frontend;
388 eDVBRegisteredFrontend *linked_fe = 0;
389 eDVBSatelliteDiseqcParameters::t_diseqc_mode diseqc_mode = di_param.m_diseqc_mode;
391 frontend.getData(eDVBFrontend::SATPOS_DEPENDS_PTR, satposDependPtr);
393 if (!(m_not_linked_slot_mask & slot_id)) // frontend with direct connection?
395 long linked_prev_ptr;
396 frontend.getData(eDVBFrontend::LINKED_PREV_PTR, linked_prev_ptr);
397 while (linked_prev_ptr != -1)
399 linked_fe = (eDVBRegisteredFrontend*) linked_prev_ptr;
400 sec_fe = linked_fe->m_frontend;
401 sec_fe->getData(eDVBFrontend::LINKED_PREV_PTR, (long&)linked_prev_ptr);
403 if (satposDependPtr != -1) // we dont need uncommitted switch and rotor cmds on second output of a rotor lnb
404 diseqc_mode = eDVBSatelliteDiseqcParameters::V1_0;
406 // in eDVBFrontend::tuneLoop we call closeFrontend and ->inc_use() in this this condition (to put the kernel frontend thread into idle state)
407 // so we must resend all diseqc stuff (voltage is disabled when the frontend is closed)
409 sec_fe->getState(state);
410 if (!linked_fe->m_inuse && state != eDVBFrontend::stateIdle)
415 sec_fe->getData(eDVBFrontend::CSW, lastcsw);
416 sec_fe->getData(eDVBFrontend::UCSW, lastucsw);
417 sec_fe->getData(eDVBFrontend::TONEBURST, lastToneburst);
418 sec_fe->getData(eDVBFrontend::ROTOR_CMD, lastRotorCmd);
419 sec_fe->getData(eDVBFrontend::ROTOR_POS, curRotorPos);
421 if ( sat.frequency > lnb_param.m_lof_threshold )
425 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_hi;
427 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_lo;
429 parm.FREQUENCY = abs(parm.FREQUENCY);
431 frontend.setData(eDVBFrontend::FREQ_OFFSET, sat.frequency - parm.FREQUENCY);
433 if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
436 if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_14V
437 || ( sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical
438 && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV ) )
439 voltage = VOLTAGE(13);
440 else if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_18V
441 || ( !(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical)
442 && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV ) )
443 voltage = VOLTAGE(18);
444 if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::ON)
445 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && (band&1) ) )
446 tone = iDVBFrontend::toneOn;
447 else if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::OFF)
448 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && !(band&1) ) )
449 tone = iDVBFrontend::toneOff;
451 eSecCommandList sec_sequence;
453 if (diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
455 if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
456 csw = 0xF0 | (csw << 2);
458 if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
462 (di_param.m_committed_cmd != eDVBSatelliteDiseqcParameters::SENDNO);
463 bool changed_csw = send_csw && (forceChanged || csw != lastcsw);
466 (di_param.m_uncommitted_cmd && diseqc_mode > eDVBSatelliteDiseqcParameters::V1_0);
467 bool changed_ucsw = send_ucsw && (forceChanged || ucsw != lastucsw);
470 (di_param.m_toneburst_param != eDVBSatelliteDiseqcParameters::NO);
471 bool changed_burst = send_burst && (forceChanged || toneburst != lastToneburst);
473 int send_mask = 0; /*
476 4 send toneburst first
477 8 send toneburst at end */
478 if (changed_burst) // toneburst first and toneburst changed
480 if (di_param.m_command_order&1)
494 if ((di_param.m_command_order&4) && send_csw)
496 if (di_param.m_command_order==4 && send_burst)
501 if ( di_param.m_use_fast
502 && di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO
504 && ((csw / 4) == (lastcsw / 4)) )
505 eDebugNoSimulate("dont send committed cmd (fast diseqc)");
509 if (!(di_param.m_command_order&4) && send_ucsw)
511 if (!(di_param.m_command_order&1) && send_burst)
517 eDebugNoNewLine("sendmask: ");
518 for (int i=3; i >= 0; --i)
519 if ( send_mask & (1<<i) )
520 eDebugNoNewLine("1");
522 eDebugNoNewLine("0");
525 if (doSetVoltageToneFrontend)
528 bool useGotoXX = false;
529 if ( diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2
530 && !sat.no_rotor_command_on_tune )
532 if (sw_param.m_rotorPosNum) // we have stored rotor pos?
533 RotorCmd=sw_param.m_rotorPosNum;
534 else // we must calc gotoxx cmd
536 eDebugNoSimulate("Entry for %d,%d? not in Rotor Table found... i try gotoXX?", sat.orbital_position / 10, sat.orbital_position % 10 );
539 double SatLon = abs(sat.orbital_position)/10.00,
540 SiteLat = rotor_param.m_gotoxx_parameters.m_latitude,
541 SiteLon = rotor_param.m_gotoxx_parameters.m_longitude;
543 if ( rotor_param.m_gotoxx_parameters.m_la_direction == eDVBSatelliteRotorParameters::SOUTH )
546 if ( rotor_param.m_gotoxx_parameters.m_lo_direction == eDVBSatelliteRotorParameters::WEST )
547 SiteLon = 360 - SiteLon;
549 eDebugNoSimulate("siteLatitude = %lf, siteLongitude = %lf, %lf degrees", SiteLat, SiteLon, SatLon );
550 double satHourAngle =
551 calcSatHourangle( SatLon, SiteLat, SiteLon );
552 eDebugNoSimulate("PolarmountHourAngle=%lf", satHourAngle );
554 static int gotoXTable[10] =
555 { 0x00, 0x02, 0x03, 0x05, 0x06, 0x08, 0x0A, 0x0B, 0x0D, 0x0E };
557 if (SiteLat >= 0) // Northern Hemisphere
559 int tmp=(int)round( fabs( 180 - satHourAngle ) * 10.0 );
560 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
562 if (satHourAngle < 180) // the east
567 else // Southern Hemisphere
569 if (satHourAngle < 180) // the east
571 int tmp=(int)round( fabs( satHourAngle ) * 10.0 );
572 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
577 int tmp=(int)round( fabs( 360 - satHourAngle ) * 10.0 );
578 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
582 eDebugNoSimulate("RotorCmd = %04x", RotorCmd);
588 int vlt = iDVBFrontend::voltageOff;
589 eSecCommand::pair compare;
591 compare.tone = iDVBFrontend::toneOff;
592 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
593 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
594 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
596 if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
598 if (rotor_param.m_inputpower_parameters.m_use)
599 vlt = VOLTAGE(18); // in input power mode set 18V for measure input power
601 vlt = VOLTAGE(13); // in normal mode start turning with 13V
606 // check if voltage is already correct..
607 compare.voltage = vlt;
609 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
611 // check if voltage is disabled
612 compare.voltage = iDVBFrontend::voltageOff;
614 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
616 // voltage is changed... use DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS
617 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, vlt) );
618 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS]) );
619 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +3) );
621 // voltage was disabled.. use DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS
622 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, vlt) );
623 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS]) );
625 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_SWITCHPARMS) );
626 for (int seq_repeat = 0; seq_repeat < (di_param.m_seq_repeat?2:1); ++seq_repeat)
630 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
631 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
641 loops <<= di_param.m_repeats;
643 for ( int i = 0; i < loops;) // fill commands...
645 eDVBDiseqcCommand diseqc;
646 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
648 diseqc.data[0] = i ? 0xE1 : 0xE0;
649 diseqc.data[1] = 0x10;
650 if ( (send_mask & 2) && (di_param.m_command_order & 4) )
652 diseqc.data[2] = 0x39;
653 diseqc.data[3] = ucsw;
655 else if ( send_mask & 1 )
657 diseqc.data[2] = 0x38;
658 diseqc.data[3] = csw;
660 else // no committed command confed.. so send uncommitted..
662 diseqc.data[2] = 0x39;
663 diseqc.data[3] = ucsw;
665 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
671 if (diseqc.data[2] == 0x38 && (send_mask & 2))
673 else if (diseqc.data[2] == 0x39 && (send_mask & 1))
675 int tmp = m_params[DELAY_BETWEEN_DISEQC_REPEATS];
678 int delay = di_param.m_repeats ? (tmp - 54) / 2 : tmp; // standard says 100msek between two repeated commands
679 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay) );
681 diseqc.data[3]=(cmd==0x38) ? csw : ucsw;
682 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
685 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay ) );
687 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
689 else // delay 120msek when no command is in repeat gap
690 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, tmp) );
693 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
696 if ( send_mask & 8 ) // toneburst at end of sequence
698 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
699 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
702 if (di_param.m_seq_repeat && seq_repeat == 0)
703 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BEFORE_SEQUENCE_REPEAT]) );
708 eDebugNoSimulate("RotorCmd %02x, lastRotorCmd %02lx", RotorCmd, lastRotorCmd);
709 if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
711 eSecCommand::pair compare;
715 compare.tone = iDVBFrontend::toneOff;
716 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
717 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
718 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
720 compare.voltage = iDVBFrontend::voltageOff;
722 // the next is a check if voltage is switched off.. then we first set a voltage :)
723 // else we set voltage after all diseqc stuff..
724 sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
726 if (rotor_param.m_inputpower_parameters.m_use)
727 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) ); // set 18V for measure input power
729 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) ); // in normal mode start turning with 13V
731 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD]) ); // wait 750ms when voltage was disabled
732 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +9) ); // no need to send stop rotor cmd and recheck voltage
735 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD]) ); // wait 700ms when diseqc changed
737 eDVBDiseqcCommand diseqc;
738 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
740 diseqc.data[0] = 0xE0;
741 diseqc.data[1] = 0x31; // positioner
742 diseqc.data[2] = 0x60; // stop
743 sec_sequence.push_back( eSecCommand(eSecCommand::IF_ROTORPOS_VALID_GOTO, +5) );
744 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
745 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
746 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
747 // wait 150msec after send rotor stop cmd
748 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_MOTOR_STOP_CMD]) );
750 diseqc.data[0] = 0xE0;
751 diseqc.data[1] = 0x31; // positioner
755 diseqc.data[2] = 0x6E; // drive to angular position
756 diseqc.data[3] = ((RotorCmd & 0xFF00) / 0x100);
757 diseqc.data[4] = RotorCmd & 0xFF;
762 diseqc.data[2] = 0x6B; // goto stored sat position
763 diseqc.data[3] = RotorCmd;
764 diseqc.data[4] = 0x00;
767 if ( rotor_param.m_inputpower_parameters.m_use )
768 { // use measure rotor input power to detect rotor state
769 bool turn_fast = need_turn_fast(rotor_param.m_inputpower_parameters.m_turning_speed);
770 eSecCommand::rotor cmd;
771 eSecCommand::pair compare;
772 compare.voltage = VOLTAGE(18);
774 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
775 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
776 // measure idle power values
777 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) ); // wait 150msec after voltage change
778 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 1) );
781 sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
782 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
783 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) ); // wait 150msec before measure
784 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 0) );
786 sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
787 ////////////////////////////
788 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_DISEQC_RETRYS, m_params[MOTOR_COMMAND_RETRIES]) ); // 2 retries
789 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
790 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
791 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 40) ); // 2 seconds rotor start timout
793 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) ); // 50msec delay
794 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
795 cmd.direction=1; // check for running rotor
796 cmd.deltaA=rotor_param.m_inputpower_parameters.m_delta;
799 sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) ); // check if rotor has started
800 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) ); // timeout .. we assume now the rotor is already at the correct position
801 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) ); // goto loop start
802 sec_sequence.push_back( eSecCommand(eSecCommand::IF_NO_MORE_ROTOR_DISEQC_RETRYS_GOTO, turn_fast ? 10 : 9 ) ); // timeout .. we assume now the rotor is already at the correct position
803 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -8) ); // goto loop start
805 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_MOVING) );
807 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
808 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*20) ); // 2 minutes running timeout
809 // rotor running loop
810 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) ); // wait 50msec
811 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
812 cmd.direction=0; // check for stopped rotor
814 sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );
815 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) ); // timeout ? this should never happen
816 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) ); // running loop start
817 /////////////////////
818 sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
819 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_STOPPED) );
822 { // use normal turning mode
823 doSetVoltageToneFrontend=false;
825 eSecCommand::rotor cmd;
826 eSecCommand::pair compare;
827 compare.voltage = VOLTAGE(13);
829 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
830 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
831 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD]) ); // wait 150msec after voltage change
833 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
834 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_MOVING) );
835 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
837 compare.voltage = voltage;
839 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // correct final voltage?
840 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 2000) ); // wait 2 second before set high voltage
841 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
844 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
845 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
846 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
847 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
849 cmd.direction=1; // check for running rotor
853 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*4) ); // 2 minutes running timeout
854 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 250) ); // 250msec delay
855 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TUNER_LOCKED_GOTO, cmd ) );
856 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +3 ) );
857 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -3) ); // goto loop start
858 sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
859 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_STOPPED) );
860 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +3) );
861 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
862 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );
864 sec_fe->setData(eDVBFrontend::NEW_ROTOR_CMD, RotorCmd);
865 sec_fe->setData(eDVBFrontend::NEW_ROTOR_POS, sat.orbital_position);
872 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_SWITCHPARMS) );
877 sec_sequence.push_front( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
879 sec_fe->setData(eDVBFrontend::NEW_CSW, csw);
880 sec_fe->setData(eDVBFrontend::NEW_UCSW, ucsw);
881 sec_fe->setData(eDVBFrontend::NEW_TONEBURST, di_param.m_toneburst_param);
883 if (doSetVoltageToneFrontend)
885 eSecCommand::pair compare;
886 compare.voltage = voltage;
888 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // voltage already correct ?
889 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
890 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_VOLTAGE_CHANGE]) );
892 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
893 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
894 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
897 sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_SWITCHPARMS) );
901 sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT, tunetimeout) );
902 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
906 sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
908 frontend.setSecSequence(sec_sequence);
913 eDebugNoSimulate("found no useable satellite configuration for %s freq %d%s %s on orbital position (%d)",
914 sat.system ? "DVB-S2" : "DVB-S",
916 sat.polarisation == eDVBFrontendParametersSatellite::Polarisation::Horizontal ? "H" :
917 eDVBFrontendParametersSatellite::Polarisation::Vertical ? "V" :
918 eDVBFrontendParametersSatellite::Polarisation::CircularLeft ? "CL" : "CR",
919 sat.modulation == eDVBFrontendParametersSatellite::Modulation::Auto ? "AUTO" :
920 eDVBFrontendParametersSatellite::Modulation::QPSK ? "QPSK" :
921 eDVBFrontendParametersSatellite::Modulation::M8PSK ? "8PSK" : "QAM16",
922 sat.orbital_position );
926 RESULT eDVBSatelliteEquipmentControl::clear()
928 eSecDebug("eDVBSatelliteEquipmentControl::clear()");
929 for (int i=0; i <= m_lnbidx; ++i)
931 m_lnbs[i].m_satellites.clear();
932 m_lnbs[i].slot_mask = 0;
936 m_not_linked_slot_mask=0;
938 //reset some tuner configuration
939 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
942 if (!strcmp(it->m_frontend->getDescription(), "BCM4501 (internal)") && !it->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp) && tmp != -1)
944 FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
945 if (!f || fwrite("B", 1, 1, f) != 1)
946 eDebug("set /proc/stb/tsmux/lnb_b_input to B failed!! (%m)");
949 eDebug("set /proc/stb/tsmux/lnb_b_input to B OK");
953 it->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, -1);
954 it->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, -1);
955 it->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, -1);
956 it->m_frontend->setData(eDVBFrontend::ROTOR_POS, -1);
957 it->m_frontend->setData(eDVBFrontend::ROTOR_CMD, -1);
960 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_simulate_frontends.begin()); it != m_avail_simulate_frontends.end(); ++it)
962 it->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, -1);
963 it->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, -1);
964 it->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, -1);
965 it->m_frontend->setData(eDVBFrontend::ROTOR_POS, -1);
966 it->m_frontend->setData(eDVBFrontend::ROTOR_CMD, -1);
972 /* LNB Specific Parameters */
973 RESULT eDVBSatelliteEquipmentControl::addLNB()
975 if ( (m_lnbidx+1) < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)))
976 m_curSat=m_lnbs[++m_lnbidx].m_satellites.end();
979 eDebug("no more LNB free... cnt is %d", m_lnbidx);
982 eSecDebug("eDVBSatelliteEquipmentControl::addLNB(%d)", m_lnbidx);
986 RESULT eDVBSatelliteEquipmentControl::setLNBSlotMask(int slotmask)
988 eSecDebug("eDVBSatelliteEquipmentControl::setLNBSlotMask(%d)", slotmask);
989 if ( currentLNBValid() )
990 m_lnbs[m_lnbidx].slot_mask = slotmask;
996 RESULT eDVBSatelliteEquipmentControl::setLNBLOFL(int lofl)
998 eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFL(%d)", lofl);
999 if ( currentLNBValid() )
1000 m_lnbs[m_lnbidx].m_lof_lo = lofl;
1006 RESULT eDVBSatelliteEquipmentControl::setLNBLOFH(int lofh)
1008 eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFH(%d)", lofh);
1009 if ( currentLNBValid() )
1010 m_lnbs[m_lnbidx].m_lof_hi = lofh;
1016 RESULT eDVBSatelliteEquipmentControl::setLNBThreshold(int threshold)
1018 eSecDebug("eDVBSatelliteEquipmentControl::setLNBThreshold(%d)", threshold);
1019 if ( currentLNBValid() )
1020 m_lnbs[m_lnbidx].m_lof_threshold = threshold;
1026 RESULT eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(bool onoff)
1028 eSecDebug("eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(%d)", onoff);
1029 if ( currentLNBValid() )
1030 m_lnbs[m_lnbidx].m_increased_voltage = onoff;
1036 /* DiSEqC Specific Parameters */
1037 RESULT eDVBSatelliteEquipmentControl::setDiSEqCMode(int diseqcmode)
1039 eSecDebug("eDVBSatelliteEquipmentControl::setDiSEqcMode(%d)", diseqcmode);
1040 if ( currentLNBValid() )
1041 m_lnbs[m_lnbidx].m_diseqc_parameters.m_diseqc_mode = (eDVBSatelliteDiseqcParameters::t_diseqc_mode)diseqcmode;
1047 RESULT eDVBSatelliteEquipmentControl::setToneburst(int toneburst)
1049 eSecDebug("eDVBSatelliteEquipmentControl::setToneburst(%d)", toneburst);
1050 if ( currentLNBValid() )
1051 m_lnbs[m_lnbidx].m_diseqc_parameters.m_toneburst_param = (eDVBSatelliteDiseqcParameters::t_toneburst_param)toneburst;
1057 RESULT eDVBSatelliteEquipmentControl::setRepeats(int repeats)
1059 eSecDebug("eDVBSatelliteEquipmentControl::setRepeats(%d)", repeats);
1060 if ( currentLNBValid() )
1061 m_lnbs[m_lnbidx].m_diseqc_parameters.m_repeats=repeats;
1067 RESULT eDVBSatelliteEquipmentControl::setCommittedCommand(int command)
1069 eSecDebug("eDVBSatelliteEquipmentControl::setCommittedCommand(%d)", command);
1070 if ( currentLNBValid() )
1071 m_lnbs[m_lnbidx].m_diseqc_parameters.m_committed_cmd=command;
1077 RESULT eDVBSatelliteEquipmentControl::setUncommittedCommand(int command)
1079 eSecDebug("eDVBSatelliteEquipmentControl::setUncommittedCommand(%d)", command);
1080 if ( currentLNBValid() )
1081 m_lnbs[m_lnbidx].m_diseqc_parameters.m_uncommitted_cmd = command;
1087 RESULT eDVBSatelliteEquipmentControl::setCommandOrder(int order)
1089 eSecDebug("eDVBSatelliteEquipmentControl::setCommandOrder(%d)", order);
1090 if ( currentLNBValid() )
1091 m_lnbs[m_lnbidx].m_diseqc_parameters.m_command_order=order;
1097 RESULT eDVBSatelliteEquipmentControl::setFastDiSEqC(bool onoff)
1099 eSecDebug("eDVBSatelliteEquipmentControl::setFastDiSEqc(%d)", onoff);
1100 if ( currentLNBValid() )
1101 m_lnbs[m_lnbidx].m_diseqc_parameters.m_use_fast=onoff;
1107 RESULT eDVBSatelliteEquipmentControl::setSeqRepeat(bool onoff)
1109 eSecDebug("eDVBSatelliteEquipmentControl::setSeqRepeat(%d)", onoff);
1110 if ( currentLNBValid() )
1111 m_lnbs[m_lnbidx].m_diseqc_parameters.m_seq_repeat = onoff;
1117 /* Rotor Specific Parameters */
1118 RESULT eDVBSatelliteEquipmentControl::setLongitude(float longitude)
1120 eSecDebug("eDVBSatelliteEquipmentControl::setLongitude(%f)", longitude);
1121 if ( currentLNBValid() )
1122 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_longitude=longitude;
1128 RESULT eDVBSatelliteEquipmentControl::setLatitude(float latitude)
1130 eSecDebug("eDVBSatelliteEquipmentControl::setLatitude(%f)", latitude);
1131 if ( currentLNBValid() )
1132 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_latitude=latitude;
1138 RESULT eDVBSatelliteEquipmentControl::setLoDirection(int direction)
1140 eSecDebug("eDVBSatelliteEquipmentControl::setLoDirection(%d)", direction);
1141 if ( currentLNBValid() )
1142 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_lo_direction=direction;
1148 RESULT eDVBSatelliteEquipmentControl::setLaDirection(int direction)
1150 eSecDebug("eDVBSatelliteEquipmentControl::setLaDirection(%d)", direction);
1151 if ( currentLNBValid() )
1152 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_la_direction=direction;
1158 RESULT eDVBSatelliteEquipmentControl::setUseInputpower(bool onoff)
1160 eSecDebug("eDVBSatelliteEquipmentControl::setUseInputpower(%d)", onoff);
1161 if ( currentLNBValid() )
1162 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_use=onoff;
1168 RESULT eDVBSatelliteEquipmentControl::setInputpowerDelta(int delta)
1170 eSecDebug("eDVBSatelliteEquipmentControl::setInputpowerDelta(%d)", delta);
1171 if ( currentLNBValid() )
1172 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_delta=delta;
1178 /* Satellite Specific Parameters */
1179 RESULT eDVBSatelliteEquipmentControl::addSatellite(int orbital_position)
1181 eSecDebug("eDVBSatelliteEquipmentControl::addSatellite(%d)", orbital_position);
1182 if ( currentLNBValid() )
1184 std::map<int, eDVBSatelliteSwitchParameters>::iterator it =
1185 m_lnbs[m_lnbidx].m_satellites.find(orbital_position);
1186 if ( it == m_lnbs[m_lnbidx].m_satellites.end() )
1188 std::pair<std::map<int, eDVBSatelliteSwitchParameters>::iterator, bool > ret =
1189 m_lnbs[m_lnbidx].m_satellites.insert(
1190 std::pair<int, eDVBSatelliteSwitchParameters>(orbital_position, eDVBSatelliteSwitchParameters())
1193 m_curSat = ret.first;
1205 RESULT eDVBSatelliteEquipmentControl::setVoltageMode(int mode)
1207 eSecDebug("eDVBSatelliteEquipmentControl::setVoltageMode(%d)", mode);
1208 if ( currentLNBValid() && m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1209 m_curSat->second.m_voltage_mode = (eDVBSatelliteSwitchParameters::t_voltage_mode)mode;
1216 RESULT eDVBSatelliteEquipmentControl::setToneMode(int mode)
1218 eSecDebug("eDVBSatelliteEquipmentControl::setToneMode(%d)", mode);
1219 if ( currentLNBValid() )
1221 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1222 m_curSat->second.m_22khz_signal = (eDVBSatelliteSwitchParameters::t_22khz_signal)mode;
1231 RESULT eDVBSatelliteEquipmentControl::setRotorPosNum(int rotor_pos_num)
1233 eSecDebug("eDVBSatelliteEquipmentControl::setRotorPosNum(%d)", rotor_pos_num);
1234 if ( currentLNBValid() )
1236 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1237 m_curSat->second.m_rotorPosNum=rotor_pos_num;
1246 RESULT eDVBSatelliteEquipmentControl::setRotorTurningSpeed(int speed)
1248 eSecDebug("eDVBSatelliteEquipmentControl::setRotorTurningSpeed(%d)", speed);
1249 if ( currentLNBValid() )
1250 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_turning_speed = speed;
1258 int orb_pos, lofl, lofh;
1259 sat_compare(int o, int lofl, int lofh)
1260 :orb_pos(o), lofl(lofl), lofh(lofh)
1262 sat_compare(const sat_compare &x)
1263 :orb_pos(x.orb_pos), lofl(x.lofl), lofh(x.lofh)
1265 bool operator < (const sat_compare & cmp) const
1267 if (orb_pos == cmp.orb_pos)
1269 if ( abs(lofl-cmp.lofl) < 200000 )
1271 if (abs(lofh-cmp.lofh) < 200000)
1273 return lofh<cmp.lofh;
1275 return lofl<cmp.lofl;
1277 return orb_pos < cmp.orb_pos;
1281 RESULT eDVBSatelliteEquipmentControl::setTunerLinked(int tu1, int tu2)
1283 eSecDebug("eDVBSatelliteEquipmentControl::setTunerLinked(%d, %d)", tu1, tu2);
1286 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1288 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
1290 if (it->m_frontend->getSlotID() == tu1)
1292 else if (it->m_frontend->getSlotID() == tu2)
1297 p1->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, (long)p2);
1298 p2->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, (long)p1);
1299 if (!strcmp(p1->m_frontend->getDescription(), p2->m_frontend->getDescription()) && !strcmp(p1->m_frontend->getDescription(), "BCM4501 (internal)"))
1301 FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
1302 if (!f || fwrite("A", 1, 1, f) != 1)
1303 eDebug("set /proc/stb/tsmux/lnb_b_input to A failed!! (%m)");
1306 eDebug("set /proc/stb/tsmux/lnb_b_input to A OK");
1313 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_simulate_frontends.begin()); it != m_avail_simulate_frontends.end(); ++it)
1315 if (it->m_frontend->getSlotID() == tu1)
1317 else if (it->m_frontend->getSlotID() == tu2)
1322 p1->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, (long)p2);
1323 p2->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, (long)p1);
1330 RESULT eDVBSatelliteEquipmentControl::setTunerDepends(int tu1, int tu2)
1332 eSecDebug("eDVBSatelliteEquipmentControl::setTunerDepends(%d, %d)", tu1, tu2);
1336 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1338 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
1340 if (it->m_frontend->getSlotID() == tu1)
1342 else if (it->m_frontend->getSlotID() == tu2)
1347 p1->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p2);
1348 p2->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p1);
1352 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_simulate_frontends.begin()); it != m_avail_simulate_frontends.end(); ++it)
1354 if (it->m_frontend->getSlotID() == tu1)
1356 else if (it->m_frontend->getSlotID() == tu2)
1361 p1->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p2);
1362 p2->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p1);
1369 void eDVBSatelliteEquipmentControl::setSlotNotLinked(int slot_no)
1371 eSecDebug("eDVBSatelliteEquipmentControl::setSlotNotLinked(%d)", slot_no);
1372 m_not_linked_slot_mask |= (1 << slot_no);
1375 bool eDVBSatelliteEquipmentControl::isRotorMoving()
1377 return m_rotorMoving;
1380 void eDVBSatelliteEquipmentControl::setRotorMoving(bool b)