in automatic scan do no more scan satellites twice when not needed (for advanced...
[vuplus_dvbapp] / lib / dvb / sec.cpp
1 #include <lib/dvb/dvb.h>
2 #include <lib/dvb/sec.h>
3 #include <lib/dvb/rotor_calc.h>
4
5 #include <set>
6
7 #if HAVE_DVB_API_VERSION < 3
8 #define FREQUENCY Frequency
9 #else
10 #define FREQUENCY frequency
11 #endif
12 #include <lib/base/eerror.h>
13
14 DEFINE_REF(eDVBSatelliteEquipmentControl);
15
16 eDVBSatelliteEquipmentControl *eDVBSatelliteEquipmentControl::instance;
17
18 eDVBSatelliteEquipmentControl::eDVBSatelliteEquipmentControl(eSmartPtrList<eDVBRegisteredFrontend> &avail_frontends)
19         :m_lnbidx(-1), m_curSat(m_lnbs[0].m_satellites.end()), m_avail_frontends(avail_frontends), m_rotorMoving(false)
20 {
21         if (!instance)
22                 instance = this;
23
24         clear();
25
26 // ASTRA
27         addLNB();
28         setLNBTunerMask(3);
29         setLNBLOFL(9750000);
30         setLNBThreshold(11750000);
31         setLNBLOFH(10607000);
32         setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_0);
33         setToneburst(eDVBSatelliteDiseqcParameters::NO);
34         setRepeats(0);
35         setCommittedCommand(eDVBSatelliteDiseqcParameters::BB);
36         setCommandOrder(0); // committed, toneburst
37         setFastDiSEqC(true);
38         setSeqRepeat(false);
39         addSatellite(192);
40         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
41         setToneMode(eDVBSatelliteSwitchParameters::HILO);
42
43 // Hotbird
44         addLNB();
45         setLNBTunerMask(3);
46         setLNBLOFL(9750000);
47         setLNBThreshold(11750000);
48         setLNBLOFH(10600000);
49         setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_0);
50         setToneburst(eDVBSatelliteDiseqcParameters::NO);
51         setRepeats(0);
52         setCommittedCommand(eDVBSatelliteDiseqcParameters::AB);
53         setCommandOrder(0); // committed, toneburst
54         setFastDiSEqC(true);
55         setSeqRepeat(false);
56         addSatellite(130);
57         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
58         setToneMode(eDVBSatelliteSwitchParameters::HILO);
59
60 // Rotor
61         addLNB();
62         setLNBTunerMask(3);
63         setLNBLOFL(9750000);
64         setLNBThreshold(11750000);
65         setLNBLOFH(10600000);
66         setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_2);
67         setToneburst(eDVBSatelliteDiseqcParameters::NO);
68         setRepeats(0);
69         setCommittedCommand(eDVBSatelliteDiseqcParameters::AA);
70         setCommandOrder(0); // committed, toneburst
71         setFastDiSEqC(true);
72         setSeqRepeat(false);
73         setLaDirection(eDVBSatelliteRotorParameters::NORTH);
74         setLoDirection(eDVBSatelliteRotorParameters::EAST);
75         setLatitude(51.017);
76         setLongitude(8.683);
77         setUseInputpower(true);
78         setInputpowerDelta(50);
79
80         addSatellite(235);
81         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
82         setToneMode(eDVBSatelliteSwitchParameters::HILO);
83         setRotorPosNum(0);
84
85         addSatellite(284);
86         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
87         setToneMode(eDVBSatelliteSwitchParameters::HILO);
88         setRotorPosNum(0);
89
90         addSatellite(420);
91         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
92         setToneMode(eDVBSatelliteSwitchParameters::HILO);
93         setRotorPosNum(1); // stored pos 1
94 }
95
96 int eDVBSatelliteEquipmentControl::canTune(const eDVBFrontendParametersSatellite &sat, iDVBFrontend *fe, int frontend_id )
97 {
98         int ret=0;
99
100         for (int idx=0; idx <= m_lnbidx; ++idx )
101         {
102                 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
103                 if ( lnb_param.tuner_mask & frontend_id ) // lnb for correct tuner?
104                 {
105                         eDVBSatelliteDiseqcParameters &di_param = lnb_param.m_diseqc_parameters;
106
107                         std::map<int, eDVBSatelliteSwitchParameters>::iterator sit =
108                                 lnb_param.m_satellites.find(sat.orbital_position);
109                         if ( sit != lnb_param.m_satellites.end())
110                         {
111                                 int band=0,
112                                         linked_to=-1, // linked tuner
113                                         satpos_depends_to=-1,
114                                         csw = di_param.m_committed_cmd,
115                                         ucsw = di_param.m_uncommitted_cmd,
116                                         toneburst = di_param.m_toneburst_param,
117                                         curRotorPos;
118
119                                 fe->getData(6, curRotorPos);
120                                 fe->getData(7, linked_to);
121                                 fe->getData(8, satpos_depends_to);
122
123                                 if ( sat.frequency > lnb_param.m_lof_threshold )
124                                         band |= 1;
125                                 if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
126                                         band |= 2;
127
128                                 bool rotor=false;
129                                 bool diseqc=false;
130
131                                 if (di_param.m_diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
132                                 {
133                                         diseqc=true;
134                                         if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
135                                                 csw = 0xF0 | (csw << 2);
136
137                                         if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
138                                                 csw |= band;
139
140                                         if ( di_param.m_diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2 )  // ROTOR
141                                         {
142                                                 rotor=true;
143                                                 if ( curRotorPos == sat.orbital_position )
144                                                         ret=20;  // rotor on correct orbpos = prio 20
145                                                 else
146                                                         ret=10;  // rotor must turn to correct orbpos = prio 10
147                                         }
148                                         else
149                                                 ret = 30;  // no rotor = prio 30
150                                 }
151                                 else
152                                 {
153                                         csw = band;
154                                         ret = 40;  // no diseqc = prio 40
155                                 }
156
157                                 if (linked_to != -1)  // check for linked tuners..
158                                 {
159                                         eDVBRegisteredFrontend *linked_fe = (eDVBRegisteredFrontend*) linked_to;
160                                         if (linked_fe->m_inuse)
161                                         {
162                                                 int ocsw = -1,
163                                                         oucsw = -1,
164                                                         oToneburst = -1,
165                                                         oRotorPos = -1;
166                                                 linked_fe->m_frontend->getData(0, ocsw);
167                                                 linked_fe->m_frontend->getData(1, oucsw);
168                                                 linked_fe->m_frontend->getData(2, oToneburst);
169                                                 linked_fe->m_frontend->getData(6, oRotorPos);
170 #if 0
171                                                 eDebug("compare csw %02x == lcsw %02x",
172                                                         csw, ocsw);
173                                                 if ( diseqc )
174                                                         eDebug("compare ucsw %02x == lucsw %02x\ncompare toneburst %02x == oToneburst %02x",
175                                                                 ucsw, oucsw, toneburst, oToneburst);
176                                                 if ( rotor )
177                                                         eDebug("compare pos %d == current pos %d",
178                                                                 sat.orbital_position, oRotorPos);
179 #endif
180                                                 if ( (csw != ocsw) ||
181                                                         ( diseqc && (ucsw != oucsw || toneburst != oToneburst) ) ||
182                                                         ( rotor && oRotorPos != sat.orbital_position ) )
183                                                 {
184 //                                                      eDebug("can not tune this transponder with linked tuner in use!!");
185                                                         ret=0;
186                                                 }
187 //                                              else
188 //                                                      eDebug("OK .. can tune this transponder with linked tuner in use :)");
189                                         }
190                                 }
191
192                                 if (satpos_depends_to != -1)  // check for linked tuners..
193                                 {
194                                         eDVBRegisteredFrontend *satpos_depends_to_fe = (eDVBRegisteredFrontend*) satpos_depends_to;
195                                         if ( satpos_depends_to_fe->m_inuse )
196                                         {
197                                                 int oRotorPos = -1;
198                                                 satpos_depends_to_fe->m_frontend->getData(6, oRotorPos);
199                                                 if (!rotor || oRotorPos != sat.orbital_position)
200                                                 {
201 //                                                      eDebug("can not tune this transponder ... rotor on other tuner is positioned to %d", oRotorPos);
202                                                         ret=0;
203                                                 }
204                                         }
205 //                                      else
206 //                                              eDebug("OK .. can tune this transponder satpos is correct :)");
207                                 }
208                                 if (ret)
209                                 {
210                                         int lof = sat.frequency > lnb_param.m_lof_threshold ?
211                                                 lnb_param.m_lof_hi : lnb_param.m_lof_lo;
212                                         int tuner_freq = abs(sat.frequency - lof);
213 //                                      eDebug("tuner freq %d", tuner_freq);
214                                         if (tuner_freq < 900000 || tuner_freq > 2200000)
215                                         {
216                                                 ret=0;
217 //                                              eDebug("Transponder not tuneable with this lnb... %d Khz out of tuner range",
218 //                                                      tuner_freq);
219                                         }
220                                 }
221                         }
222                 }
223         }
224         return ret;
225 }
226
227 #define VOLTAGE(x) (lnb_param.m_increased_voltage ? iDVBFrontend::voltage##x##_5 : iDVBFrontend::voltage##x)
228
229 RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPARAMETERS &parm, const eDVBFrontendParametersSatellite &sat, int frontend_id)
230 {
231         bool linked=false;
232         bool depend_satpos_mode=false;
233
234         for (int idx=0; idx <= m_lnbidx; ++idx )
235         {
236                 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
237                 if (!(lnb_param.tuner_mask & frontend_id)) // lnb for correct tuner?
238                         continue;
239                 eDVBSatelliteDiseqcParameters &di_param = lnb_param.m_diseqc_parameters;
240                 eDVBSatelliteRotorParameters &rotor_param = lnb_param.m_rotor_parameters;
241
242                 std::map<int, eDVBSatelliteSwitchParameters>::iterator sit =
243                         lnb_param.m_satellites.find(sat.orbital_position);
244                 if ( sit != lnb_param.m_satellites.end())
245                 {
246                         eDVBSatelliteSwitchParameters &sw_param = sit->second;
247                         bool doSetVoltageToneFrontend = true;
248                         bool doSetFrontend = true;
249                         int band=0,
250                                 linked_to=-1, // linked tuner
251                                 satpos_depends_to=-1,
252                                 voltage = iDVBFrontend::voltageOff,
253                                 tone = iDVBFrontend::toneOff,
254                                 csw = di_param.m_committed_cmd,
255                                 ucsw = di_param.m_uncommitted_cmd,
256                                 toneburst = di_param.m_toneburst_param,
257                                 lastcsw = -1,
258                                 lastucsw = -1,
259                                 lastToneburst = -1,
260                                 lastRotorCmd = -1,
261                                 curRotorPos = -1;
262
263                         frontend.getData(0, lastcsw);
264                         frontend.getData(1, lastucsw);
265                         frontend.getData(2, lastToneburst);
266                         frontend.getData(5, lastRotorCmd);
267                         frontend.getData(6, curRotorPos);
268                         frontend.getData(7, linked_to);
269                         frontend.getData(8, satpos_depends_to);
270
271                         if (linked_to != -1)
272                         {
273                                 eDVBRegisteredFrontend *linked_fe = (eDVBRegisteredFrontend*) linked_to;
274                                 if (linked_fe->m_inuse)
275                                 {
276                                         eDebug("[SEC] frontend is linked with another and the other one is in use.. so we dont do SEC!!");
277                                         linked=true;
278                                 }
279                         }
280
281                         if (satpos_depends_to != -1)
282                         {
283                                 eDVBRegisteredFrontend *satpos_fe = (eDVBRegisteredFrontend*) satpos_depends_to;
284                                 if (satpos_fe->m_inuse)
285                                 {
286                                         if ( di_param.m_diseqc_mode != eDVBSatelliteDiseqcParameters::V1_2 )
287                                                 continue;
288                                         eDebug("[SEC] frontend is depending on satpos of other one.. so we dont turn rotor!!");
289                                         depend_satpos_mode=true;
290                                 }
291                         }
292
293                         if ( sat.frequency > lnb_param.m_lof_threshold )
294                                 band |= 1;
295
296                         if (band&1)
297                                 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_hi;
298                         else
299                                 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_lo;
300
301                         parm.FREQUENCY = abs(parm.FREQUENCY);
302
303                         frontend.setData(9, sat.frequency - parm.FREQUENCY);
304
305                         if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
306                                 band |= 2;
307
308                         if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_14V
309                                 || ( sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical
310                                         && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV )  )
311                                 voltage = VOLTAGE(13);
312                         else if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_18V
313                                 || ( !(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical)
314                                         && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV )  )
315                                 voltage = VOLTAGE(18);
316                         if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::ON)
317                                 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && (band&1) ) )
318                                 tone = iDVBFrontend::toneOn;
319                         else if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::OFF)
320                                 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && !(band&1) ) )
321                                 tone = iDVBFrontend::toneOff;
322
323                         eSecCommandList sec_sequence;
324
325                         if (di_param.m_diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
326                         {
327                                 if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
328                                         csw = 0xF0 | (csw << 2);
329
330                                 if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
331                                         csw |= band;
332
333                                 bool send_csw =
334                                         (di_param.m_committed_cmd != eDVBSatelliteDiseqcParameters::SENDNO);
335                                 bool changed_csw = send_csw && csw != lastcsw;
336
337                                 bool send_ucsw =
338                                         (di_param.m_uncommitted_cmd && di_param.m_diseqc_mode > eDVBSatelliteDiseqcParameters::V1_0);
339                                 bool changed_ucsw = send_ucsw && ucsw != lastucsw;
340
341                                 bool send_burst =
342                                         (di_param.m_toneburst_param != eDVBSatelliteDiseqcParameters::NO);
343                                 bool changed_burst = send_burst && toneburst != lastToneburst;
344
345                                 int send_mask = 0; /*
346                                         1 must send csw
347                                         2 must send ucsw
348                                         4 send toneburst first
349                                         8 send toneburst at end */
350                                 if (changed_burst) // toneburst first and toneburst changed
351                                 {
352                                         if (di_param.m_command_order&1)
353                                         {
354                                                 send_mask |= 4;
355                                                 if ( send_csw )
356                                                         send_mask |= 1;
357                                                 if ( send_ucsw )
358                                                         send_mask |= 2;
359                                         }
360                                         else
361                                                 send_mask |= 8;
362                                 }
363                                 if (changed_ucsw)
364                                 {
365                                         send_mask |= 2;
366                                         if ((di_param.m_command_order&4) && send_csw)
367                                                 send_mask |= 1;
368                                         if (di_param.m_command_order==4 && send_burst)
369                                                 send_mask |= 8;
370                                 }
371                                 if (changed_csw) 
372                                 {
373                                         if ( di_param.m_use_fast
374                                                 && di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO
375                                                 && (lastcsw & 0xF0)
376                                                 && ((csw / 4) == (lastcsw / 4)) )
377                                                 eDebug("dont send committed cmd (fast diseqc)");
378                                         else
379                                         {
380                                                 send_mask |= 1;
381                                                 if (!(di_param.m_command_order&4) && send_ucsw)
382                                                         send_mask |= 2;
383                                                 if (!(di_param.m_command_order&1) && send_burst)
384                                                         send_mask |= 8;
385                                         }
386                                 }
387
388 #if 0
389                                 eDebugNoNewLine("sendmask: ");
390                                 for (int i=3; i >= 0; --i)
391                                         if ( send_mask & (1<<i) )
392                                                 eDebugNoNewLine("1");
393                                         else
394                                                 eDebugNoNewLine("0");
395                                 eDebug("");
396 #endif
397
398                                 int RotorCmd=-1;
399                                 bool useGotoXX = false;
400                                 if ( di_param.m_diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2 )
401                                 {
402                                         if (depend_satpos_mode || linked)
403                                                 // in this both modes we dont really turn the rotor.... but in canTune we need the satpos
404                                                 frontend.setData(6, sat.orbital_position);
405                                         else
406                                         {
407                                                 if (sw_param.m_rotorPosNum) // we have stored rotor pos?
408                                                         RotorCmd=sw_param.m_rotorPosNum;
409                                                 else  // we must calc gotoxx cmd
410                                                 {
411                                                         eDebug("Entry for %d,%d? not in Rotor Table found... i try gotoXX?", sat.orbital_position / 10, sat.orbital_position % 10 );
412                                                         useGotoXX = true;
413
414                                                         double  SatLon = abs(sat.orbital_position)/10.00,
415                                                                         SiteLat = rotor_param.m_gotoxx_parameters.m_latitude,
416                                                                         SiteLon = rotor_param.m_gotoxx_parameters.m_longitude;
417
418                                                         if ( rotor_param.m_gotoxx_parameters.m_la_direction == eDVBSatelliteRotorParameters::SOUTH )
419                                                                 SiteLat = -SiteLat;
420
421                                                         if ( rotor_param.m_gotoxx_parameters.m_lo_direction == eDVBSatelliteRotorParameters::WEST )
422                                                                 SiteLon = 360 - SiteLon;
423
424                                                         eDebug("siteLatitude = %lf, siteLongitude = %lf, %lf degrees", SiteLat, SiteLon, SatLon );
425                                                         double satHourAngle =
426                                                                 calcSatHourangle( SatLon, SiteLat, SiteLon );
427                                                         eDebug("PolarmountHourAngle=%lf", satHourAngle );
428
429                                                         static int gotoXTable[10] =
430                                                                 { 0x00, 0x02, 0x03, 0x05, 0x06, 0x08, 0x0A, 0x0B, 0x0D, 0x0E };
431
432                                                         if (SiteLat >= 0) // Northern Hemisphere
433                                                         {
434                                                                 int tmp=(int)round( fabs( 180 - satHourAngle ) * 10.0 );
435                                                                 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
436
437                                                                 if (satHourAngle < 180) // the east
438                                                                         RotorCmd |= 0xE000;
439                                                                 else                                    // west
440                                                                         RotorCmd |= 0xD000;
441                                                         }
442                                                         else // Southern Hemisphere
443                                                         {
444                                                                 if (satHourAngle < 180) // the east
445                                                                 {
446                                                                         int tmp=(int)round( fabs( satHourAngle ) * 10.0 );
447                                                                         RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
448                                                                         RotorCmd |= 0xD000;
449                                                                 }
450                                                                 else                                    // west
451                                                                 {
452                                                                         int tmp=(int)round( fabs( 360 - satHourAngle ) * 10.0 );
453                                                                         RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
454                                                                         RotorCmd |= 0xE000;
455                                                                 }
456                                                         }
457                                                         eDebug("RotorCmd = %04x", RotorCmd);
458                                                 }
459                                         }
460                                 }
461
462                                 if ( send_mask )
463                                 {
464                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
465                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 15) );
466                                         eSecCommand::pair compare;
467                                         compare.voltage = iDVBFrontend::voltageOff;
468                                         compare.steps = +4;
469                                         // the next is a check if voltage is switched off.. then we first set a voltage :)
470                                         // else we set voltage after all diseqc stuff..
471                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
472
473                                         if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
474                                         {
475                                                 if (rotor_param.m_inputpower_parameters.m_use)
476                                                         compare.voltage = VOLTAGE(18);  // in input power mode turn rotor always with 18V (fast)
477                                                 else
478                                                         compare.voltage = VOLTAGE(13);  // in normal mode start turning with 13V
479                                         }
480                                         else
481                                                 compare.voltage = voltage;
482
483                                         // voltage already correct ?
484                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
485                                         compare.steps = +3;
486                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
487                                         // voltage was disabled..so we wait a longer time .. for normal switches 200ms should be enough
488                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 200) );
489
490                                         for (int seq_repeat = 0; seq_repeat < (di_param.m_seq_repeat?2:1); ++seq_repeat)
491                                         {
492                                                 if ( send_mask & 4 )
493                                                 {
494                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
495                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
496                                                 }
497
498                                                 int loops=0;
499
500                                                 if ( send_mask & 1 )
501                                                         ++loops;
502                                                 if ( send_mask & 2 )
503                                                         ++loops;
504
505                                                 for ( int i=0; i < di_param.m_repeats; ++i )
506                                                 loops *= 2;
507
508                                                 for ( int i = 0; i < loops;)  // fill commands...
509                                                 {
510                                                         eDVBDiseqcCommand diseqc;
511                                                         diseqc.len = 4;
512                                                         diseqc.data[0] = i ? 0xE1 : 0xE0;
513                                                         diseqc.data[1] = 0x10;
514                                                         if ( (send_mask & 2) && (di_param.m_command_order & 4) )
515                                                         {
516                                                                 diseqc.data[2] = 0x39;
517                                                                 diseqc.data[3] = ucsw;
518                                                         }
519                                                         else if ( send_mask & 1 )
520                                                         {
521                                                                 diseqc.data[2] = 0x38;
522                                                                 diseqc.data[3] = csw;
523                                                         }
524                                                         else
525                                                         {
526                                                                 diseqc.data[2] = 0x00;
527                                                                 diseqc.data[3] = 0x00;
528                                                         }
529                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
530
531                                                         i++;
532                                                         if ( i < loops )
533                                                         {
534                                                                 int cmd=0;
535                                                                 if (diseqc.data[2] == 0x38 && (send_mask & 2))
536                                                                         cmd=0x39;
537                                                                 else if (diseqc.data[2] == 0x39 && (send_mask & 1))
538                                                                         cmd=0x38;
539                                                                 if (cmd)
540                                                                 {
541                                                                         static int delay = (120 - 54) / 2;  // standard says 100msek between two repeated commands
542                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay) );
543                                                                         diseqc.data[2]=cmd;
544                                                                         diseqc.data[3]=(cmd==0x38) ? csw : ucsw;
545                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
546                                                                         ++i;
547                                                                         if ( i < loops )
548                                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay ) );
549                                                                         else
550                                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
551                                                                 }
552                                                                 else  // delay 120msek when no command is in repeat gap
553                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 120) );
554                                                         }
555                                                         else
556                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
557                                                 }
558
559                                                 if ( send_mask & 8 )  // toneburst at end of sequence
560                                                 {
561                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
562                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
563                                                 }
564                                         }
565                                 }
566
567                                 if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
568                                 {
569                                         eSecCommand::pair compare;
570                                         compare.voltage = iDVBFrontend::voltageOff;
571                                         compare.steps = +4;
572                                         // the next is a check if voltage is switched off.. then we first set a voltage :)
573                                         // else we set voltage after all diseqc stuff..
574                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
575
576                                         if (rotor_param.m_inputpower_parameters.m_use)
577                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) ); // in normal mode start turning with 13V
578                                         else
579                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) ); // turn always with 18V
580
581                                         // voltage was disabled..so we wait a longer time ..
582                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 500) );
583                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +7) );  // no need to send stop rotor cmd
584
585                                         if (send_mask)
586                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 750) ); // wait 750ms after send switch cmd
587                                         else
588                                                 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +1) );
589
590                                         eDVBDiseqcCommand diseqc;
591                                         diseqc.len = 3;
592                                         diseqc.data[0] = 0xE0;
593                                         diseqc.data[1] = 0x31;  // positioner
594                                         diseqc.data[2] = 0x60;  // stop
595                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_ROTORPOS_VALID_GOTO, +5) );
596                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
597                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
598                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
599                                         // wait 300msec after send rotor stop cmd
600                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 300) );
601
602                                         diseqc.data[0] = 0xE0;
603                                         diseqc.data[1] = 0x31;          // positioner
604                                         if ( useGotoXX )
605                                         {
606                                                 diseqc.len = 5;
607                                                 diseqc.data[2] = 0x6E;  // drive to angular position
608                                                 diseqc.data[3] = ((RotorCmd & 0xFF00) / 0x100);
609                                                 diseqc.data[4] = RotorCmd & 0xFF;
610                                         }
611                                         else
612                                         {
613                                                 diseqc.len = 4;
614                                                 diseqc.data[2] = 0x6B;  // goto stored sat position
615                                                 diseqc.data[3] = RotorCmd;
616                                                 diseqc.data[4] = 0x00;
617                                         }
618
619                                         if ( rotor_param.m_inputpower_parameters.m_use )
620                                         { // use measure rotor input power to detect rotor state
621                                                 eSecCommand::rotor cmd;
622                                                 eSecCommand::pair compare;
623                                                 compare.voltage = VOLTAGE(18);
624                                                 compare.steps = +2;
625                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
626                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
627 // measure idle power values
628                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 200) );  // wait 200msec after voltage change
629                                                 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 1) );
630                                                 compare.voltage = 1;
631                                                 compare.steps = -2;
632                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
633                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
634                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 200) );  // wait 200msec before measure
635                                                 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 0) );
636                                                 compare.voltage = 0;
637                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
638 ////////////////////////////
639                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
640                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_DISEQC_RETRYS, 2) );  // 2 retries
641                                                 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
642                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
643                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 40) );  // 2 seconds rotor start timout
644 // rotor start loop
645                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // 50msec delay
646                                                 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
647                                                 cmd.direction=1;  // check for running rotor
648                                                 cmd.deltaA=rotor_param.m_inputpower_parameters.m_delta;
649                                                 cmd.steps=+5;
650                                                 cmd.okcount=0;
651                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );  // check if rotor has started
652                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) );  // timeout .. we assume now the rotor is already at the correct position
653                                                 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // goto loop start
654                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_NO_MORE_ROTOR_DISEQC_RETRYS_GOTO, +9 ) );  // timeout .. we assume now the rotor is already at the correct position
655                                                 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -8) );  // goto loop start
656 ////////////////////
657                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 2400) );  // 2 minutes running timeout
658                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
659 // rotor running loop
660                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // wait 50msec
661                                                 sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
662                                                 cmd.direction=0;  // check for stopped rotor
663                                                 cmd.steps=+3;
664                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );
665                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +3 ) );  // timeout ? this should never happen
666                                                 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // running loop start
667 /////////////////////
668                                         }
669                                         else
670                                         {  // use normal turning mode
671                                                 doSetVoltageToneFrontend=false;
672                                                 doSetFrontend=false;
673                                                 eSecCommand::rotor cmd;
674                                                 eSecCommand::pair compare;
675                                                 compare.voltage = VOLTAGE(13);
676                                                 compare.steps = +2;
677                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
678                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
679                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 200) );  // wait 200msec after voltage change
680
681                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
682                                                 sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
683                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
684
685                                                 compare.voltage = voltage;
686                                                 compare.steps = +3;
687                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // correct final voltage?
688                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 2000) );  // wait 2 second before set high voltage
689                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
690
691                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
692                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
693
694                                                 cmd.direction=1;  // check for running rotor
695                                                 cmd.deltaA=0;
696                                                 cmd.steps=+3;
697                                                 cmd.okcount=0;
698
699                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 480) );  // 2 minutes running timeout
700                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 250) );  // 250msec delay
701                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TUNER_LOCKED_GOTO, cmd ) );
702                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +3 ) ); 
703                                                 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -3) );  // goto loop start
704                                         }
705                                         sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
706                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
707                                         frontend.setData(3, RotorCmd);
708                                         frontend.setData(4, sat.orbital_position);
709                                 }
710                         }
711                         else
712                                 csw = band;
713
714                         frontend.setData(0, csw);
715                         frontend.setData(1, ucsw);
716                         frontend.setData(2, di_param.m_toneburst_param);
717
718                         if (!linked && doSetVoltageToneFrontend)
719                         {
720                                 eSecCommand::pair compare;
721                                 compare.voltage = voltage;
722                                 compare.steps = +3;
723                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // voltage already correct ?
724                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
725                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 10) );
726
727                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
728                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 15) );
729                         }
730
731                         if (doSetFrontend)
732                         {
733                                 sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT) );
734                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
735                         }
736                         frontend.setSecSequence(sec_sequence);
737
738                         return 0;
739                 }
740         }
741
742         eDebug("found no useable satellite configuration for orbital position (%d)", sat.orbital_position );
743         return -1;
744 }
745
746 RESULT eDVBSatelliteEquipmentControl::clear()
747 {
748         for (int i=0; i <= m_lnbidx; ++i)
749         {
750                 m_lnbs[i].m_satellites.clear();
751                 m_lnbs[i].tuner_mask = 0;
752         }
753         m_lnbidx=-1;
754
755 // clear linked tuner configuration
756         for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
757                 it->m_frontend->setData(7, -1);
758
759         return 0;
760 }
761
762 // helper function for setTunerLinked and setTunerDepends
763 RESULT eDVBSatelliteEquipmentControl::setDependencyPointers( int tu1, int tu2, int dest_data_byte )
764 {
765         if (tu1 == tu2)
766                 return -1;
767
768         eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
769
770         int cnt=0;
771         for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
772         {
773                 if (cnt == tu1)
774                         p1 = *it;
775                 else if (cnt == tu2)
776                         p2 = *it;
777         }
778         if (p1 && p2)
779         {
780                 p1->m_frontend->setData(dest_data_byte, (int)p2);  // this is evil..
781                 p2->m_frontend->setData(dest_data_byte, (int)p1);
782                 return 0;
783         }
784         return -1;
785 }
786
787 /* LNB Specific Parameters */
788 RESULT eDVBSatelliteEquipmentControl::addLNB()
789 {
790         if ( (m_lnbidx+1) < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)))
791                 m_curSat=m_lnbs[++m_lnbidx].m_satellites.end();
792         else
793         {
794                 eDebug("no more LNB free... cnt is %d", m_lnbidx);
795                 return -ENOSPC;
796         }
797         return 0;
798 }
799
800 RESULT eDVBSatelliteEquipmentControl::setLNBTunerMask(int tunermask)
801 {
802         if ( currentLNBValid() )
803                 m_lnbs[m_lnbidx].tuner_mask = tunermask;
804         else
805                 return -ENOENT;
806         return 0;
807 }
808
809 RESULT eDVBSatelliteEquipmentControl::setLNBLOFL(int lofl)
810 {
811         if ( currentLNBValid() )
812                 m_lnbs[m_lnbidx].m_lof_lo = lofl;
813         else
814                 return -ENOENT;
815         return 0;
816 }
817
818 RESULT eDVBSatelliteEquipmentControl::setLNBLOFH(int lofh)
819 {
820         if ( currentLNBValid() )
821                 m_lnbs[m_lnbidx].m_lof_hi = lofh;
822         else
823                 return -ENOENT;
824         return 0;
825 }
826
827 RESULT eDVBSatelliteEquipmentControl::setLNBThreshold(int threshold)
828 {
829         if ( currentLNBValid() )
830                 m_lnbs[m_lnbidx].m_lof_threshold = threshold;
831         else
832                 return -ENOENT;
833         return 0;
834 }
835
836 RESULT eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(bool onoff)
837 {
838         if ( currentLNBValid() )
839                 m_lnbs[m_lnbidx].m_increased_voltage = onoff;
840         else
841                 return -ENOENT;
842         return 0;
843 }
844
845 /* DiSEqC Specific Parameters */
846 RESULT eDVBSatelliteEquipmentControl::setDiSEqCMode(int diseqcmode)
847 {
848         if ( currentLNBValid() )
849                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_diseqc_mode = (eDVBSatelliteDiseqcParameters::t_diseqc_mode)diseqcmode;
850         else
851                 return -ENOENT;
852         return 0;
853 }
854
855 RESULT eDVBSatelliteEquipmentControl::setToneburst(int toneburst)
856 {
857         if ( currentLNBValid() )
858                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_toneburst_param = (eDVBSatelliteDiseqcParameters::t_toneburst_param)toneburst;
859         else
860                 return -ENOENT;
861         return 0;
862 }
863
864 RESULT eDVBSatelliteEquipmentControl::setRepeats(int repeats)
865 {
866         if ( currentLNBValid() )
867                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_repeats=repeats;
868         else
869                 return -ENOENT;
870         return 0;
871 }
872
873 RESULT eDVBSatelliteEquipmentControl::setCommittedCommand(int command)
874 {
875         if ( currentLNBValid() )
876                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_committed_cmd=command;
877         else
878                 return -ENOENT;
879         return 0;
880 }
881
882 RESULT eDVBSatelliteEquipmentControl::setUncommittedCommand(int command)
883 {
884         if ( currentLNBValid() )
885                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_uncommitted_cmd = command;
886         else
887                 return -ENOENT;
888         return 0;
889 }
890
891 RESULT eDVBSatelliteEquipmentControl::setCommandOrder(int order)
892 {
893         if ( currentLNBValid() )
894                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_command_order=order;
895         else
896                 return -ENOENT;
897         return 0;
898 }
899
900 RESULT eDVBSatelliteEquipmentControl::setFastDiSEqC(bool onoff)
901 {
902         if ( currentLNBValid() )
903                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_use_fast=onoff;
904         else
905                 return -ENOENT;
906         return 0;
907 }
908
909 RESULT eDVBSatelliteEquipmentControl::setSeqRepeat(bool onoff)
910 {
911         if ( currentLNBValid() )
912                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_seq_repeat = onoff;
913         else
914                 return -ENOENT;
915         return 0;
916 }
917
918 /* Rotor Specific Parameters */
919 RESULT eDVBSatelliteEquipmentControl::setLongitude(float longitude)
920 {
921         if ( currentLNBValid() )
922                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_longitude=longitude;
923         else
924                 return -ENOENT;
925         return 0;
926 }
927
928 RESULT eDVBSatelliteEquipmentControl::setLatitude(float latitude)
929 {
930         if ( currentLNBValid() )
931                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_latitude=latitude;
932         else
933                 return -ENOENT;
934         return 0;
935 }
936
937 RESULT eDVBSatelliteEquipmentControl::setLoDirection(int direction)
938 {
939         if ( currentLNBValid() )
940                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_lo_direction=direction;
941         else
942                 return -ENOENT;
943         return 0;
944 }
945
946 RESULT eDVBSatelliteEquipmentControl::setLaDirection(int direction)
947 {
948         if ( currentLNBValid() )
949                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_la_direction=direction;
950         else
951                 return -ENOENT;
952         return 0;
953 }
954
955 RESULT eDVBSatelliteEquipmentControl::setUseInputpower(bool onoff)
956 {
957         if ( currentLNBValid() )
958                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_use=onoff;
959         else
960                 return -ENOENT;
961         return 0;
962 }
963
964 RESULT eDVBSatelliteEquipmentControl::setInputpowerDelta(int delta)
965 {
966         if ( currentLNBValid() )
967                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_delta=delta;
968         else
969                 return -ENOENT;
970         return 0;
971 }
972
973 /* Satellite Specific Parameters */
974 RESULT eDVBSatelliteEquipmentControl::addSatellite(int orbital_position)
975 {
976         if ( currentLNBValid() )
977         {
978                 std::map<int, eDVBSatelliteSwitchParameters>::iterator it =
979                         m_lnbs[m_lnbidx].m_satellites.find(orbital_position);
980                 if ( it == m_lnbs[m_lnbidx].m_satellites.end() )
981                 {
982                         std::pair<std::map<int, eDVBSatelliteSwitchParameters>::iterator, bool > ret =
983                                 m_lnbs[m_lnbidx].m_satellites.insert(
984                                         std::pair<int, eDVBSatelliteSwitchParameters>(orbital_position, eDVBSatelliteSwitchParameters())
985                                 );
986                         if ( ret.second )
987                                 m_curSat = ret.first;
988                         else
989                                 return -ENOMEM;
990                 }
991                 else
992                         return -EEXIST;
993         }
994         else
995                 return -ENOENT;
996         return 0;
997 }
998
999 RESULT eDVBSatelliteEquipmentControl::setVoltageMode(int mode)
1000 {
1001         if ( currentLNBValid() && m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1002                 m_curSat->second.m_voltage_mode = (eDVBSatelliteSwitchParameters::t_voltage_mode)mode;
1003         else
1004                 return -ENOENT;
1005         return 0;
1006
1007 }
1008
1009 RESULT eDVBSatelliteEquipmentControl::setToneMode(int mode)
1010 {
1011         if ( currentLNBValid() )
1012         {
1013                 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1014                         m_curSat->second.m_22khz_signal = (eDVBSatelliteSwitchParameters::t_22khz_signal)mode;
1015                 else
1016                         return -EPERM;
1017         }
1018         else
1019                 return -ENOENT;
1020         return 0;
1021 }
1022
1023 RESULT eDVBSatelliteEquipmentControl::setRotorPosNum(int rotor_pos_num)
1024 {
1025         if ( currentLNBValid() )
1026         {
1027                 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1028                         m_curSat->second.m_rotorPosNum=rotor_pos_num;
1029                 else
1030                         return -EPERM;
1031         }
1032         else
1033                 return -ENOENT;
1034         return 0;
1035 }
1036
1037 struct sat_compare
1038 {
1039         int orb_pos, lofl, lofh;
1040         sat_compare(int o, int lofl, int lofh)
1041                 :orb_pos(o), lofl(lofl), lofh(lofh)
1042         {}
1043         sat_compare(const sat_compare &x)
1044                 :orb_pos(x.orb_pos), lofl(x.lofl), lofh(x.lofh)
1045         {}
1046         bool operator < (const sat_compare & cmp) const
1047         {
1048                 if (orb_pos == cmp.orb_pos)
1049                 {
1050                         if ( abs(lofl-cmp.lofl) < 200000 )
1051                         {
1052                                 if (abs(lofh-cmp.lofh) < 200000)
1053                                         return false;
1054                                 return lofh<cmp.lofh;
1055                         }
1056                         return lofl<cmp.lofl;
1057                 }
1058                 return orb_pos < cmp.orb_pos;
1059         }
1060 };
1061
1062 PyObject *eDVBSatelliteEquipmentControl::get_exclusive_satellites(int tu1, int tu2)
1063 {
1064         PyObject *ret=0;
1065
1066         int tu1_mask = 1 << tu1,
1067                 tu2_mask = 1 << tu2;
1068
1069         if (tu1 != tu2)
1070         {
1071                 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1072                 int cnt=0;
1073                 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1074                 {
1075                         if (cnt == tu1)
1076                                 p1 = *it;
1077                         else if (cnt == tu2)
1078                                 p2 = *it;
1079                 }
1080                 if (p1 && p2)
1081                 {
1082                         // check for linked tuners
1083                         int tmp1, tmp2;
1084                         p1->m_frontend->getData(7, tmp1);
1085                         p2->m_frontend->getData(7, tmp2);
1086                         if ((void*)tmp1 != p2 && (void*)tmp2 != p1)
1087                         {
1088                                 // check for rotor dependency
1089                                 p1->m_frontend->getData(8, tmp1);
1090                                 p2->m_frontend->getData(8, tmp2);
1091                                 if ((void*)tmp1 != p2 && (void*)tmp2 != p1)
1092                                 {
1093                                         std::set<sat_compare> tu1sats, tu2sats;
1094                                         std::list<sat_compare> tu1difference, tu2difference;
1095                                         std::insert_iterator<std::list<sat_compare> > insert1(tu1difference, tu1difference.begin()),
1096                                                 insert2(tu2difference, tu2difference.begin());
1097                                         for (int idx=0; idx <= m_lnbidx; ++idx )
1098                                         {
1099                                                 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
1100                                                 for (std::map<int, eDVBSatelliteSwitchParameters>::iterator sit(lnb_param.m_satellites.begin());
1101                                                         sit != lnb_param.m_satellites.end(); ++sit)
1102                                                 {
1103                                                         if ( lnb_param.tuner_mask & tu1_mask )
1104                                                                 tu1sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1105                                                         if ( lnb_param.tuner_mask & tu2_mask )
1106                                                                 tu2sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1107                                                 }
1108                                         }
1109                                         std::set_difference(tu1sats.begin(), tu1sats.end(),
1110                                                 tu2sats.begin(), tu2sats.end(),
1111                                                 insert1);
1112                                         std::set_difference(tu2sats.begin(), tu2sats.end(),
1113                                                 tu1sats.begin(), tu1sats.end(),
1114                                                 insert2);
1115                                         if (!tu1sats.empty() || !tu2sats.empty())
1116                                         {
1117                                                 int idx=0;
1118                                                 ret = PyList_New(2+tu1difference.size()+tu2difference.size());
1119
1120                                                 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu1difference.size()));
1121                                                 for(std::list<sat_compare>::iterator it(tu1difference.begin()); it != tu1difference.end(); ++it)
1122                                                         PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1123
1124                                                 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu2difference.size()));
1125                                                 for(std::list<sat_compare>::iterator it(tu2difference.begin()); it != tu2difference.end(); ++it)
1126                                                         PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1127                                         }
1128                                 }
1129                         }
1130                 }
1131         }
1132         if (!ret)
1133         {
1134                 ret = PyList_New(2);
1135                 PyList_SET_ITEM(ret, 0, PyInt_FromLong(0));
1136                 PyList_SET_ITEM(ret, 1, PyInt_FromLong(0));
1137         }
1138         return ret;
1139 }
1140
1141 RESULT eDVBSatelliteEquipmentControl::setTunerLinked(int tu1, int tu2)
1142 {
1143         return setDependencyPointers(tu1, tu2, 7);
1144 }
1145
1146 RESULT eDVBSatelliteEquipmentControl::setTunerDepends(int tu1, int tu2)
1147 {
1148         return setDependencyPointers(tu1, tu2, 8);
1149 }
1150
1151 bool eDVBSatelliteEquipmentControl::isRotorMoving()
1152 {
1153         return m_rotorMoving;
1154 }
1155
1156 void eDVBSatelliteEquipmentControl::setRotorMoving(bool b)
1157 {
1158         m_rotorMoving=b;
1159 }