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