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;
375 bool needDiSEqCReset = false;
377 voltage = iDVBFrontend::voltageOff,
378 tone = iDVBFrontend::toneOff,
379 csw = di_param.m_committed_cmd,
380 ucsw = di_param.m_uncommitted_cmd,
381 toneburst = di_param.m_toneburst_param,
387 satposDependPtr = -1;
388 iDVBFrontend *sec_fe=&frontend;
389 eDVBRegisteredFrontend *linked_fe = 0;
390 eDVBSatelliteDiseqcParameters::t_diseqc_mode diseqc_mode = di_param.m_diseqc_mode;
392 frontend.getData(eDVBFrontend::SATPOS_DEPENDS_PTR, satposDependPtr);
394 if (!(m_not_linked_slot_mask & slot_id)) // frontend with direct connection?
396 long linked_prev_ptr;
397 frontend.getData(eDVBFrontend::LINKED_PREV_PTR, linked_prev_ptr);
398 while (linked_prev_ptr != -1)
400 linked_fe = (eDVBRegisteredFrontend*) linked_prev_ptr;
401 sec_fe = linked_fe->m_frontend;
402 sec_fe->getData(eDVBFrontend::LINKED_PREV_PTR, (long&)linked_prev_ptr);
404 if (satposDependPtr != -1) // we dont need uncommitted switch and rotor cmds on second output of a rotor lnb
405 diseqc_mode = eDVBSatelliteDiseqcParameters::V1_0;
407 // in eDVBFrontend::tuneLoop we call closeFrontend and ->inc_use() in this this condition (to put the kernel frontend thread into idle state)
408 // so we must resend all diseqc stuff (voltage is disabled when the frontend is closed)
410 sec_fe->getState(state);
411 if (!linked_fe->m_inuse && state != eDVBFrontend::stateIdle)
416 sec_fe->getData(eDVBFrontend::CSW, lastcsw);
417 sec_fe->getData(eDVBFrontend::UCSW, lastucsw);
418 sec_fe->getData(eDVBFrontend::TONEBURST, lastToneburst);
419 sec_fe->getData(eDVBFrontend::ROTOR_CMD, lastRotorCmd);
420 sec_fe->getData(eDVBFrontend::ROTOR_POS, curRotorPos);
422 if (lastcsw == lastucsw && lastToneburst == lastucsw && lastucsw == -1)
423 needDiSEqCReset = true;
425 if ( sat.frequency > lnb_param.m_lof_threshold )
429 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_hi;
431 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_lo;
433 parm.FREQUENCY = abs(parm.FREQUENCY);
435 frontend.setData(eDVBFrontend::FREQ_OFFSET, sat.frequency - parm.FREQUENCY);
437 if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
440 if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_14V
441 || ( sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical
442 && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV ) )
443 voltage = VOLTAGE(13);
444 else if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_18V
445 || ( !(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical)
446 && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV ) )
447 voltage = VOLTAGE(18);
448 if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::ON)
449 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && (band&1) ) )
450 tone = iDVBFrontend::toneOn;
451 else if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::OFF)
452 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && !(band&1) ) )
453 tone = iDVBFrontend::toneOff;
455 eSecCommandList sec_sequence;
457 if (diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
459 if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
460 csw = 0xF0 | (csw << 2);
462 if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
466 (di_param.m_committed_cmd != eDVBSatelliteDiseqcParameters::SENDNO);
467 bool changed_csw = send_csw && (forceChanged || csw != lastcsw);
470 (di_param.m_uncommitted_cmd && diseqc_mode > eDVBSatelliteDiseqcParameters::V1_0);
471 bool changed_ucsw = send_ucsw && (forceChanged || ucsw != lastucsw);
474 (di_param.m_toneburst_param != eDVBSatelliteDiseqcParameters::NO);
475 bool changed_burst = send_burst && (forceChanged || toneburst != lastToneburst);
477 int send_mask = 0; /*
480 4 send toneburst first
481 8 send toneburst at end */
482 if (changed_burst) // toneburst first and toneburst changed
484 if (di_param.m_command_order&1)
498 if ((di_param.m_command_order&4) && send_csw)
500 if (di_param.m_command_order==4 && send_burst)
505 if ( di_param.m_use_fast
506 && di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO
508 && ((csw / 4) == (lastcsw / 4)) )
509 eDebugNoSimulate("dont send committed cmd (fast diseqc)");
513 if (!(di_param.m_command_order&4) && send_ucsw)
515 if (!(di_param.m_command_order&1) && send_burst)
521 eDebugNoNewLine("sendmask: ");
522 for (int i=3; i >= 0; --i)
523 if ( send_mask & (1<<i) )
524 eDebugNoNewLine("1");
526 eDebugNoNewLine("0");
529 if (doSetVoltageToneFrontend)
532 bool useGotoXX = false;
533 if ( diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2
534 && !sat.no_rotor_command_on_tune )
536 if (sw_param.m_rotorPosNum) // we have stored rotor pos?
537 RotorCmd=sw_param.m_rotorPosNum;
538 else // we must calc gotoxx cmd
540 eDebugNoSimulate("Entry for %d,%d? not in Rotor Table found... i try gotoXX?", sat.orbital_position / 10, sat.orbital_position % 10 );
543 double SatLon = abs(sat.orbital_position)/10.00,
544 SiteLat = rotor_param.m_gotoxx_parameters.m_latitude,
545 SiteLon = rotor_param.m_gotoxx_parameters.m_longitude;
547 if ( rotor_param.m_gotoxx_parameters.m_la_direction == eDVBSatelliteRotorParameters::SOUTH )
550 if ( rotor_param.m_gotoxx_parameters.m_lo_direction == eDVBSatelliteRotorParameters::WEST )
551 SiteLon = 360 - SiteLon;
553 eDebugNoSimulate("siteLatitude = %lf, siteLongitude = %lf, %lf degrees", SiteLat, SiteLon, SatLon );
554 double satHourAngle =
555 calcSatHourangle( SatLon, SiteLat, SiteLon );
556 eDebugNoSimulate("PolarmountHourAngle=%lf", satHourAngle );
558 static int gotoXTable[10] =
559 { 0x00, 0x02, 0x03, 0x05, 0x06, 0x08, 0x0A, 0x0B, 0x0D, 0x0E };
561 if (SiteLat >= 0) // Northern Hemisphere
563 int tmp=(int)round( fabs( 180 - satHourAngle ) * 10.0 );
564 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
566 if (satHourAngle < 180) // the east
571 else // Southern Hemisphere
573 if (satHourAngle < 180) // the east
575 int tmp=(int)round( fabs( satHourAngle ) * 10.0 );
576 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
581 int tmp=(int)round( fabs( 360 - satHourAngle ) * 10.0 );
582 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
586 eDebugNoSimulate("RotorCmd = %04x", RotorCmd);
592 int vlt = iDVBFrontend::voltageOff;
593 eSecCommand::pair compare;
595 compare.tone = iDVBFrontend::toneOff;
596 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
597 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
598 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
600 if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
602 if (rotor_param.m_inputpower_parameters.m_use)
603 vlt = VOLTAGE(18); // in input power mode set 18V for measure input power
605 vlt = VOLTAGE(13); // in normal mode start turning with 13V
610 // check if voltage is already correct..
611 compare.voltage = vlt;
613 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
615 // check if voltage is disabled
616 compare.voltage = iDVBFrontend::voltageOff;
618 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
620 // voltage is changed... use DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS
621 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, vlt) );
622 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS]) );
623 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +3) );
625 // voltage was disabled.. use DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS
626 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, vlt) );
627 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS]) );
629 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_SWITCHPARMS) );
632 eDVBDiseqcCommand diseqc;
633 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
635 diseqc.data[0] = 0xE0;
639 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
640 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
642 // diseqc peripherial powersupply on
643 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
644 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 150) );
647 for (int seq_repeat = 0; seq_repeat < (di_param.m_seq_repeat?2:1); ++seq_repeat)
651 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
652 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
662 loops <<= di_param.m_repeats;
664 for ( int i = 0; i < loops;) // fill commands...
666 eDVBDiseqcCommand diseqc;
667 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
669 diseqc.data[0] = i ? 0xE1 : 0xE0;
670 diseqc.data[1] = 0x10;
671 if ( (send_mask & 2) && (di_param.m_command_order & 4) )
673 diseqc.data[2] = 0x39;
674 diseqc.data[3] = ucsw;
676 else if ( send_mask & 1 )
678 diseqc.data[2] = 0x38;
679 diseqc.data[3] = csw;
681 else // no committed command confed.. so send uncommitted..
683 diseqc.data[2] = 0x39;
684 diseqc.data[3] = ucsw;
686 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
692 if (diseqc.data[2] == 0x38 && (send_mask & 2))
694 else if (diseqc.data[2] == 0x39 && (send_mask & 1))
696 int tmp = m_params[DELAY_BETWEEN_DISEQC_REPEATS];
699 int delay = di_param.m_repeats ? (tmp - 54) / 2 : tmp; // standard says 100msek between two repeated commands
700 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay) );
702 diseqc.data[3]=(cmd==0x38) ? csw : ucsw;
703 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
706 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay ) );
708 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
710 else // delay 120msek when no command is in repeat gap
711 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, tmp) );
714 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
717 if ( send_mask & 8 ) // toneburst at end of sequence
719 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
720 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
723 if (di_param.m_seq_repeat && seq_repeat == 0)
724 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BEFORE_SEQUENCE_REPEAT]) );
729 eDebugNoSimulate("RotorCmd %02x, lastRotorCmd %02lx", RotorCmd, lastRotorCmd);
730 if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
732 eSecCommand::pair compare;
736 compare.tone = iDVBFrontend::toneOff;
737 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
738 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
739 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
741 compare.voltage = iDVBFrontend::voltageOff;
743 // the next is a check if voltage is switched off.. then we first set a voltage :)
744 // else we set voltage after all diseqc stuff..
745 sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
747 if (rotor_param.m_inputpower_parameters.m_use)
748 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) ); // set 18V for measure input power
750 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) ); // in normal mode start turning with 13V
752 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD]) ); // wait 750ms when voltage was disabled
753 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +9) ); // no need to send stop rotor cmd and recheck voltage
756 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD]) ); // wait 700ms when diseqc changed
758 eDVBDiseqcCommand diseqc;
759 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
761 diseqc.data[0] = 0xE0;
762 diseqc.data[1] = 0x31; // positioner
763 diseqc.data[2] = 0x60; // stop
764 sec_sequence.push_back( eSecCommand(eSecCommand::IF_ROTORPOS_VALID_GOTO, +5) );
765 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
766 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
767 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
768 // wait 150msec after send rotor stop cmd
769 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_MOTOR_STOP_CMD]) );
771 diseqc.data[0] = 0xE0;
772 diseqc.data[1] = 0x31; // positioner
776 diseqc.data[2] = 0x6E; // drive to angular position
777 diseqc.data[3] = ((RotorCmd & 0xFF00) / 0x100);
778 diseqc.data[4] = RotorCmd & 0xFF;
783 diseqc.data[2] = 0x6B; // goto stored sat position
784 diseqc.data[3] = RotorCmd;
785 diseqc.data[4] = 0x00;
788 if ( rotor_param.m_inputpower_parameters.m_use )
789 { // use measure rotor input power to detect rotor state
790 bool turn_fast = need_turn_fast(rotor_param.m_inputpower_parameters.m_turning_speed);
791 eSecCommand::rotor cmd;
792 eSecCommand::pair compare;
793 compare.voltage = VOLTAGE(18);
795 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
796 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
797 // measure idle power values
798 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) ); // wait 150msec after voltage change
799 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 1) );
802 sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
803 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
804 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) ); // wait 150msec before measure
805 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 0) );
807 sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
808 ////////////////////////////
809 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_DISEQC_RETRYS, m_params[MOTOR_COMMAND_RETRIES]) ); // 2 retries
810 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
811 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
812 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 40) ); // 2 seconds rotor start timout
814 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) ); // 50msec delay
815 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
816 cmd.direction=1; // check for running rotor
817 cmd.deltaA=rotor_param.m_inputpower_parameters.m_delta;
820 sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) ); // check if rotor has started
821 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) ); // timeout .. we assume now the rotor is already at the correct position
822 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) ); // goto loop start
823 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
824 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -8) ); // goto loop start
826 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_MOVING) );
828 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
829 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*20) ); // 2 minutes running timeout
830 // rotor running loop
831 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) ); // wait 50msec
832 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
833 cmd.direction=0; // check for stopped rotor
835 sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );
836 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) ); // timeout ? this should never happen
837 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) ); // running loop start
838 /////////////////////
839 sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
840 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_STOPPED) );
843 { // use normal turning mode
844 doSetVoltageToneFrontend=false;
846 eSecCommand::rotor cmd;
847 eSecCommand::pair compare;
848 compare.voltage = VOLTAGE(13);
850 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
851 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
852 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD]) ); // wait 150msec after voltage change
854 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
855 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_MOVING) );
856 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
858 compare.voltage = voltage;
860 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // correct final voltage?
861 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 2000) ); // wait 2 second before set high voltage
862 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
865 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
866 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
867 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
868 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
870 cmd.direction=1; // check for running rotor
874 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*4) ); // 2 minutes running timeout
875 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 250) ); // 250msec delay
876 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TUNER_LOCKED_GOTO, cmd ) );
877 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +3 ) );
878 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -3) ); // goto loop start
879 sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
880 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_STOPPED) );
881 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +3) );
882 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
883 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );
885 sec_fe->setData(eDVBFrontend::NEW_ROTOR_CMD, RotorCmd);
886 sec_fe->setData(eDVBFrontend::NEW_ROTOR_POS, sat.orbital_position);
893 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_SWITCHPARMS) );
898 sec_sequence.push_front( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
900 sec_fe->setData(eDVBFrontend::NEW_CSW, csw);
901 sec_fe->setData(eDVBFrontend::NEW_UCSW, ucsw);
902 sec_fe->setData(eDVBFrontend::NEW_TONEBURST, di_param.m_toneburst_param);
904 if (doSetVoltageToneFrontend)
906 eSecCommand::pair compare;
907 compare.voltage = voltage;
909 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // voltage already correct ?
910 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
911 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_VOLTAGE_CHANGE]) );
913 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
914 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
915 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
918 sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_SWITCHPARMS) );
922 sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT, tunetimeout) );
923 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
927 sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
929 frontend.setSecSequence(sec_sequence);
934 eDebugNoSimulate("found no useable satellite configuration for %s freq %d%s %s on orbital position (%d)",
935 sat.system ? "DVB-S2" : "DVB-S",
937 sat.polarisation == eDVBFrontendParametersSatellite::Polarisation::Horizontal ? "H" :
938 eDVBFrontendParametersSatellite::Polarisation::Vertical ? "V" :
939 eDVBFrontendParametersSatellite::Polarisation::CircularLeft ? "CL" : "CR",
940 sat.modulation == eDVBFrontendParametersSatellite::Modulation::Auto ? "AUTO" :
941 eDVBFrontendParametersSatellite::Modulation::QPSK ? "QPSK" :
942 eDVBFrontendParametersSatellite::Modulation::M8PSK ? "8PSK" : "QAM16",
943 sat.orbital_position );
947 RESULT eDVBSatelliteEquipmentControl::clear()
949 eSecDebug("eDVBSatelliteEquipmentControl::clear()");
950 for (int i=0; i <= m_lnbidx; ++i)
952 m_lnbs[i].m_satellites.clear();
953 m_lnbs[i].slot_mask = 0;
957 m_not_linked_slot_mask=0;
959 //reset some tuner configuration
960 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
963 if (!strcmp(it->m_frontend->getDescription(), "BCM4501 (internal)") && !it->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp) && tmp != -1)
965 FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
966 if (!f || fwrite("B", 1, 1, f) != 1)
967 eDebug("set /proc/stb/tsmux/lnb_b_input to B failed!! (%m)");
970 eDebug("set /proc/stb/tsmux/lnb_b_input to B OK");
974 it->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, -1);
975 it->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, -1);
976 it->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, -1);
977 it->m_frontend->setData(eDVBFrontend::ROTOR_POS, -1);
978 it->m_frontend->setData(eDVBFrontend::ROTOR_CMD, -1);
981 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_simulate_frontends.begin()); it != m_avail_simulate_frontends.end(); ++it)
983 it->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, -1);
984 it->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, -1);
985 it->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, -1);
986 it->m_frontend->setData(eDVBFrontend::ROTOR_POS, -1);
987 it->m_frontend->setData(eDVBFrontend::ROTOR_CMD, -1);
993 /* LNB Specific Parameters */
994 RESULT eDVBSatelliteEquipmentControl::addLNB()
996 if ( (m_lnbidx+1) < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)))
997 m_curSat=m_lnbs[++m_lnbidx].m_satellites.end();
1000 eDebug("no more LNB free... cnt is %d", m_lnbidx);
1003 eSecDebug("eDVBSatelliteEquipmentControl::addLNB(%d)", m_lnbidx);
1007 RESULT eDVBSatelliteEquipmentControl::setLNBSlotMask(int slotmask)
1009 eSecDebug("eDVBSatelliteEquipmentControl::setLNBSlotMask(%d)", slotmask);
1010 if ( currentLNBValid() )
1011 m_lnbs[m_lnbidx].slot_mask = slotmask;
1017 RESULT eDVBSatelliteEquipmentControl::setLNBLOFL(int lofl)
1019 eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFL(%d)", lofl);
1020 if ( currentLNBValid() )
1021 m_lnbs[m_lnbidx].m_lof_lo = lofl;
1027 RESULT eDVBSatelliteEquipmentControl::setLNBLOFH(int lofh)
1029 eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFH(%d)", lofh);
1030 if ( currentLNBValid() )
1031 m_lnbs[m_lnbidx].m_lof_hi = lofh;
1037 RESULT eDVBSatelliteEquipmentControl::setLNBThreshold(int threshold)
1039 eSecDebug("eDVBSatelliteEquipmentControl::setLNBThreshold(%d)", threshold);
1040 if ( currentLNBValid() )
1041 m_lnbs[m_lnbidx].m_lof_threshold = threshold;
1047 RESULT eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(bool onoff)
1049 eSecDebug("eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(%d)", onoff);
1050 if ( currentLNBValid() )
1051 m_lnbs[m_lnbidx].m_increased_voltage = onoff;
1057 /* DiSEqC Specific Parameters */
1058 RESULT eDVBSatelliteEquipmentControl::setDiSEqCMode(int diseqcmode)
1060 eSecDebug("eDVBSatelliteEquipmentControl::setDiSEqcMode(%d)", diseqcmode);
1061 if ( currentLNBValid() )
1062 m_lnbs[m_lnbidx].m_diseqc_parameters.m_diseqc_mode = (eDVBSatelliteDiseqcParameters::t_diseqc_mode)diseqcmode;
1068 RESULT eDVBSatelliteEquipmentControl::setToneburst(int toneburst)
1070 eSecDebug("eDVBSatelliteEquipmentControl::setToneburst(%d)", toneburst);
1071 if ( currentLNBValid() )
1072 m_lnbs[m_lnbidx].m_diseqc_parameters.m_toneburst_param = (eDVBSatelliteDiseqcParameters::t_toneburst_param)toneburst;
1078 RESULT eDVBSatelliteEquipmentControl::setRepeats(int repeats)
1080 eSecDebug("eDVBSatelliteEquipmentControl::setRepeats(%d)", repeats);
1081 if ( currentLNBValid() )
1082 m_lnbs[m_lnbidx].m_diseqc_parameters.m_repeats=repeats;
1088 RESULT eDVBSatelliteEquipmentControl::setCommittedCommand(int command)
1090 eSecDebug("eDVBSatelliteEquipmentControl::setCommittedCommand(%d)", command);
1091 if ( currentLNBValid() )
1092 m_lnbs[m_lnbidx].m_diseqc_parameters.m_committed_cmd=command;
1098 RESULT eDVBSatelliteEquipmentControl::setUncommittedCommand(int command)
1100 eSecDebug("eDVBSatelliteEquipmentControl::setUncommittedCommand(%d)", command);
1101 if ( currentLNBValid() )
1102 m_lnbs[m_lnbidx].m_diseqc_parameters.m_uncommitted_cmd = command;
1108 RESULT eDVBSatelliteEquipmentControl::setCommandOrder(int order)
1110 eSecDebug("eDVBSatelliteEquipmentControl::setCommandOrder(%d)", order);
1111 if ( currentLNBValid() )
1112 m_lnbs[m_lnbidx].m_diseqc_parameters.m_command_order=order;
1118 RESULT eDVBSatelliteEquipmentControl::setFastDiSEqC(bool onoff)
1120 eSecDebug("eDVBSatelliteEquipmentControl::setFastDiSEqc(%d)", onoff);
1121 if ( currentLNBValid() )
1122 m_lnbs[m_lnbidx].m_diseqc_parameters.m_use_fast=onoff;
1128 RESULT eDVBSatelliteEquipmentControl::setSeqRepeat(bool onoff)
1130 eSecDebug("eDVBSatelliteEquipmentControl::setSeqRepeat(%d)", onoff);
1131 if ( currentLNBValid() )
1132 m_lnbs[m_lnbidx].m_diseqc_parameters.m_seq_repeat = onoff;
1138 /* Rotor Specific Parameters */
1139 RESULT eDVBSatelliteEquipmentControl::setLongitude(float longitude)
1141 eSecDebug("eDVBSatelliteEquipmentControl::setLongitude(%f)", longitude);
1142 if ( currentLNBValid() )
1143 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_longitude=longitude;
1149 RESULT eDVBSatelliteEquipmentControl::setLatitude(float latitude)
1151 eSecDebug("eDVBSatelliteEquipmentControl::setLatitude(%f)", latitude);
1152 if ( currentLNBValid() )
1153 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_latitude=latitude;
1159 RESULT eDVBSatelliteEquipmentControl::setLoDirection(int direction)
1161 eSecDebug("eDVBSatelliteEquipmentControl::setLoDirection(%d)", direction);
1162 if ( currentLNBValid() )
1163 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_lo_direction=direction;
1169 RESULT eDVBSatelliteEquipmentControl::setLaDirection(int direction)
1171 eSecDebug("eDVBSatelliteEquipmentControl::setLaDirection(%d)", direction);
1172 if ( currentLNBValid() )
1173 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_la_direction=direction;
1179 RESULT eDVBSatelliteEquipmentControl::setUseInputpower(bool onoff)
1181 eSecDebug("eDVBSatelliteEquipmentControl::setUseInputpower(%d)", onoff);
1182 if ( currentLNBValid() )
1183 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_use=onoff;
1189 RESULT eDVBSatelliteEquipmentControl::setInputpowerDelta(int delta)
1191 eSecDebug("eDVBSatelliteEquipmentControl::setInputpowerDelta(%d)", delta);
1192 if ( currentLNBValid() )
1193 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_delta=delta;
1199 /* Satellite Specific Parameters */
1200 RESULT eDVBSatelliteEquipmentControl::addSatellite(int orbital_position)
1202 eSecDebug("eDVBSatelliteEquipmentControl::addSatellite(%d)", orbital_position);
1203 if ( currentLNBValid() )
1205 std::map<int, eDVBSatelliteSwitchParameters>::iterator it =
1206 m_lnbs[m_lnbidx].m_satellites.find(orbital_position);
1207 if ( it == m_lnbs[m_lnbidx].m_satellites.end() )
1209 std::pair<std::map<int, eDVBSatelliteSwitchParameters>::iterator, bool > ret =
1210 m_lnbs[m_lnbidx].m_satellites.insert(
1211 std::pair<int, eDVBSatelliteSwitchParameters>(orbital_position, eDVBSatelliteSwitchParameters())
1214 m_curSat = ret.first;
1226 RESULT eDVBSatelliteEquipmentControl::setVoltageMode(int mode)
1228 eSecDebug("eDVBSatelliteEquipmentControl::setVoltageMode(%d)", mode);
1229 if ( currentLNBValid() && m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1230 m_curSat->second.m_voltage_mode = (eDVBSatelliteSwitchParameters::t_voltage_mode)mode;
1237 RESULT eDVBSatelliteEquipmentControl::setToneMode(int mode)
1239 eSecDebug("eDVBSatelliteEquipmentControl::setToneMode(%d)", mode);
1240 if ( currentLNBValid() )
1242 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1243 m_curSat->second.m_22khz_signal = (eDVBSatelliteSwitchParameters::t_22khz_signal)mode;
1252 RESULT eDVBSatelliteEquipmentControl::setRotorPosNum(int rotor_pos_num)
1254 eSecDebug("eDVBSatelliteEquipmentControl::setRotorPosNum(%d)", rotor_pos_num);
1255 if ( currentLNBValid() )
1257 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1258 m_curSat->second.m_rotorPosNum=rotor_pos_num;
1267 RESULT eDVBSatelliteEquipmentControl::setRotorTurningSpeed(int speed)
1269 eSecDebug("eDVBSatelliteEquipmentControl::setRotorTurningSpeed(%d)", speed);
1270 if ( currentLNBValid() )
1271 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_turning_speed = speed;
1279 int orb_pos, lofl, lofh;
1280 sat_compare(int o, int lofl, int lofh)
1281 :orb_pos(o), lofl(lofl), lofh(lofh)
1283 sat_compare(const sat_compare &x)
1284 :orb_pos(x.orb_pos), lofl(x.lofl), lofh(x.lofh)
1286 bool operator < (const sat_compare & cmp) const
1288 if (orb_pos == cmp.orb_pos)
1290 if ( abs(lofl-cmp.lofl) < 200000 )
1292 if (abs(lofh-cmp.lofh) < 200000)
1294 return lofh<cmp.lofh;
1296 return lofl<cmp.lofl;
1298 return orb_pos < cmp.orb_pos;
1302 RESULT eDVBSatelliteEquipmentControl::setTunerLinked(int tu1, int tu2)
1304 eSecDebug("eDVBSatelliteEquipmentControl::setTunerLinked(%d, %d)", tu1, tu2);
1307 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1309 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
1311 if (it->m_frontend->getSlotID() == tu1)
1313 else if (it->m_frontend->getSlotID() == tu2)
1318 p1->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, (long)p2);
1319 p2->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, (long)p1);
1320 if (!strcmp(p1->m_frontend->getDescription(), p2->m_frontend->getDescription()) && !strcmp(p1->m_frontend->getDescription(), "BCM4501 (internal)"))
1322 FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
1323 if (!f || fwrite("A", 1, 1, f) != 1)
1324 eDebug("set /proc/stb/tsmux/lnb_b_input to A failed!! (%m)");
1327 eDebug("set /proc/stb/tsmux/lnb_b_input to A OK");
1334 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_simulate_frontends.begin()); it != m_avail_simulate_frontends.end(); ++it)
1336 if (it->m_frontend->getSlotID() == tu1)
1338 else if (it->m_frontend->getSlotID() == tu2)
1343 p1->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, (long)p2);
1344 p2->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, (long)p1);
1351 RESULT eDVBSatelliteEquipmentControl::setTunerDepends(int tu1, int tu2)
1353 eSecDebug("eDVBSatelliteEquipmentControl::setTunerDepends(%d, %d)", tu1, tu2);
1357 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1359 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
1361 if (it->m_frontend->getSlotID() == tu1)
1363 else if (it->m_frontend->getSlotID() == tu2)
1368 p1->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p2);
1369 p2->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p1);
1373 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_simulate_frontends.begin()); it != m_avail_simulate_frontends.end(); ++it)
1375 if (it->m_frontend->getSlotID() == tu1)
1377 else if (it->m_frontend->getSlotID() == tu2)
1382 p1->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p2);
1383 p2->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p1);
1390 void eDVBSatelliteEquipmentControl::setSlotNotLinked(int slot_no)
1392 eSecDebug("eDVBSatelliteEquipmentControl::setSlotNotLinked(%d)", slot_no);
1393 m_not_linked_slot_mask |= (1 << slot_no);
1396 bool eDVBSatelliteEquipmentControl::isRotorMoving()
1398 return m_rotorMoving;
1401 void eDVBSatelliteEquipmentControl::setRotorMoving(bool b)