-
Notifications
You must be signed in to change notification settings - Fork 0
/
demodulator.h
1495 lines (1380 loc) · 48.4 KB
/
demodulator.h
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
#ifndef __GANYMEDE_H__
#define __GANYMEDE_H__
#include "type.h"
#include "user.h"
#include "error.h"
#include "register.h"
#include "variable.h"
#include "cmd.h"
#include "standard.h"
#include "demodulatorextend.h" /** release1remove */
#include "version.h"
/**
* Write one byte (8 bits) to a specific register in demodulator.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param processor The processor of specified register. Because each chip
* has two processor so user have to specify the processor. The
* possible values are Processor_LINK and Processor_OFDM.
* @param registerAddress the address of the register to be written.
* @param value the value to be written.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Ganymede ganymede;
*
* // Set the value of register 0xA000 in demodulator to 0.
* error = Demodulator_writeRegister ((Demodulator*) &ganymede, 0, Processor_LINK, 0xA000, 0);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_writeRegister (
IN Demodulator* demodulator,
IN Byte chip,
IN Processor processor,
IN Dword registerAddress,
IN Byte value
);
/**
* Write a sequence of bytes to the contiguous registers in demodulator.
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 5.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param processor The processor of specified register. Because each chip
* has two processor so user have to specify the processor. The
* possible values are Processor_LINK and Processor_OFDM.
* @param registerAddress the start address of the registers to be written.
* @param bufferLength the number of registers to be written.
* @param buffer a byte array which is used to store values to be written.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte buffer[3] = { 0x00, 0x01, 0x02 };
* Ganymede ganymede;
*
* // Set the value of register 0xA000 in demodulator to 0.
* // Set the value of register 0xA001 in demodulator to 1.
* // Set the value of register 0xA002 in demodulator to 2.
* error = Demodulator_writeRegisters ((Demodulator*) &ganymede, 0, Processor_LINK, 0xA000, 3, buffer);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_writeRegisters (
IN Demodulator* demodulator,
IN Byte chip,
IN Processor processor,
IN Dword registerAddress,
IN Byte bufferLength,
IN Byte* buffer
);
/**
* Write a collection of values to discontiguous registers in demodulator.
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 6 (one more byte to specify tuner address).
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param processor The processor of specified register. Because each chip
* has two processor so user have to specify the processor. The
* possible values are Processor_LINK and Processor_OFDM.
* @param valueSetsLength the number of values to be written.
* @param valueSets a ValueSet array which is used to store values to be
* written.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* ValueSet valueSet[3];
* Ganymede ganymede;
*
* // Get the value of register 0xA000, 0xA001 and 0xA002 in demodulator.
* valueSet[0].address = 0xA000;
* valueSet[0].value = 0x00;
* valueSet[1].address = 0xA001;
* valueSet[1].value = 0x01;
* valueSet[2].address = 0xA002;
* valueSet[2].value = 0x02;
* error = Demodulator_writeScatterRegisters ((Demodulator*) &ganymede, 0, Processor_LINK, 3, valueSet);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_writeScatterRegisters (
IN Demodulator* demodulator,
IN Byte chip,
IN Processor processor,
IN Byte valueSetsLength,
IN ValueSet* valueSets
);
/**
* Write a sequence of bytes to the contiguous registers in slave device.
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 6 (one more byte to specify tuner address).
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param registerAddress the start address of the registers to be read.
* @param bufferLength the number of registers to be read.
* @param buffer a byte array which is used to store values to be read.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte buffer[3] = { 0x00, 0x01, 0x02 };
* Ganymede ganymede;
*
* // Set the value of register 0x0000 in tuner to 0.
* // Set the value of register 0x0001 in tuner to 1.
* // Set the value of register 0x0002 in tuner to 2.
* error = Demodulator_writeTunerRegistersWithAddress ((Demodulator*) &ganymede, 0, 0x38, 0x00, 1, 3, buffer);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_writeTunerRegisters (
IN Demodulator* demodulator,
IN Byte chip,
IN Word registerAddress,
IN Byte bufferLength,
IN Byte* buffer
);
/**
* Write a sequence of bytes to the contiguous registers in slave device
* through specified interface (1, 2, 3).
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 6 (one more byte to specify tuner address).
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param interfaceIndex the index of interface. The possible values are
* 1~3.
* @param slaveAddress the I2c address of slave device.
* @param bufferLength the number of registers to be read.
* @param buffer a byte array which is used to store values to be read.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
*/
Dword Demodulator_writeGenericRegisters (
IN Demodulator* demodulator,
IN Byte chip,
IN Byte interfaceIndex,
IN Byte slaveAddress,
IN Byte bufferLength,
IN Byte* buffer
);
/**
* Write a sequence of bytes to the contiguous cells in the EEPROM.
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 5 (firmware will detect EEPROM address).
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param registerAddress the start address of the cells to be written.
* @param registerAddressLength the valid bytes of registerAddress.
* @param bufferLength the number of cells to be written.
* @param buffer a byte array which is used to store values to be written.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte buffer[3] = { 0x00, 0x01, 0x02 };
* Ganymede ganymede;
*
* // Set the value of cell 0x0000 in EEPROM to 0.
* // Set the value of cell 0x0001 in EEPROM to 1.
* // Set the value of cell 0x0002 in EEPROM to 2.
* error = Demodulator_writeEepromValues ((Demodulator*) &ganymede, 0, 0x0000, 3, buffer);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_writeEepromValues (
IN Demodulator* demodulator,
IN Byte chip,
IN Word registerAddress,
IN Byte bufferLength,
IN Byte* buffer
);
/**
* Modify bits in the specific register.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param processor The processor of specified register. Because each chip
* has two processor so user have to specify the processor. The
* possible values are Processor_LINK and Processor_OFDM.
* @param registerAddress the address of the register to be written.
* @param position the start position of bits to be modified (0 means the
* LSB of the specifyed register).
* @param length the length of bits.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Ganymede ganymede;
*
* // Modify the LSB of register 0xA000 in demodulator to 0.
* error = Demodulator_writeRegisterBits ((Demodulator*) &ganymede, 0, Processor_LINK, 0xA000, 0, 1, 0);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_writeRegisterBits (
IN Demodulator* demodulator,
IN Byte chip,
IN Processor processor,
IN Dword registerAddress,
IN Byte position,
IN Byte length,
IN Byte value
);
/**
* Read one byte (8 bits) from a specific register in demodulator.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param processor The processor of specified register. Because each chip
* has two processor so user have to specify the processor. The
* possible values are Processor_LINK and Processor_OFDM.
* @param registerAddress the address of the register to be read.
* @param value the pointer used to store the value read from demodulator
* register.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte value;
* Ganymede ganymede;
*
* // Get the value of register 0xA000 in demodulator.
* error = Demodulator_readRegister ((Demodulator*) &ganymede, 0, Processor_LINK, 0xA000, &value);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* printf ("The value of 0xA000 is %2x", value);
* </pre>
*/
Dword Demodulator_readRegister (
IN Demodulator* demodulator,
IN Byte chip,
IN Processor processor,
IN Dword registerAddress,
OUT Byte* value
);
/**
* Read a sequence of bytes from the contiguous registers in demodulator.
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 5.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param processor The processor of specified register. Because each chip
* has two processor so user have to specify the processor. The
* possible values are Processor_LINK and Processor_OFDM.
* @param registerAddress the address of the register to be read.
* @param bufferLength the number of registers to be read.
* @param buffer a byte array which is used to store values to be read.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte buffer[3];
* Ganymede ganymede;
*
* // Get the value of register 0xA000, 0xA001, 0xA002 in demodulator.
* error = Demodulator_readRegisters ((Demodulator*) &ganymede, 0, Processor_LINK, 0xA000, 3, buffer);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* printf ("The value of 0xA000 is %2x", buffer[0]);
* printf ("The value of 0xA001 is %2x", buffer[1]);
* printf ("The value of 0xA002 is %2x", buffer[2]);
* </pre>
*/
Dword Demodulator_readRegisters (
IN Demodulator* demodulator,
IN Byte chip,
IN Processor processor,
IN Dword registerAddress,
IN Byte bufferLength,
OUT Byte* buffer
);
/**
* Read a collection of values to discontiguous registers from demodulator.
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 6 (one more byte to specify tuner address).
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param processor The processor of specified register. Because each chip
* has two processor so user have to specify the processor. The
* possible values are Processor_LINK and Processor_OFDM.
* @param valueSetsLength the number of values to be read.
* @param valueSets a ValueSet array which is used to store values to be
* read.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* ValueSet valueSet[3];
* Ganymede ganymede;
*
* // Get the value of register 0xA000, 0xA001 and 0xA002 in demodulator.
* valueSet[0].address = 0xA000;
* valueSet[1].address = 0xA001;
* valueSet[2].address = 0xA002;
* error = Demodulator_readScatterRegisters ((Demodulator*) &ganymede, 0, Processor_LINK, 3, valueSet);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* printf ("The value of 0xA000 is %2x", valueSet[0].value);
* printf ("The value of 0xA001 is %2x", valueSet[1].value);
* printf ("The value of 0xA002 is %2x", valueSet[2].value);
* </pre>
*/
Dword Demodulator_readScatterRegisters (
IN Demodulator* demodulator,
IN Byte chip,
IN Processor processor,
IN Byte valueSetsLength,
OUT ValueSet* valueSets
);
/**
* Read a sequence of bytes from the contiguous registers in tuner.
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 6 (one more byte to specify tuner address).
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param registerAddress the start address of the registers to be read.
* @param registerAddressLength the valid bytes of registerAddress.
* @param bufferLength the number of registers to be read.
* @param buffer a byte array which is used to store values to be read.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte buffer[3];
* Ganymede ganymede;
*
* // Get the value of register 0x0000, 0x0001, 0x0002 in tuner.
* error = Demodulator_readTunerRegisters ((Demodulator*) &ganymede, 0, 0x0000, 3, buffer);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* printf ("The value of 0x0000 is %2x", buffer[0]);
* printf ("The value of 0x0001 is %2x", buffer[1]);
* printf ("The value of 0x0002 is %2x", buffer[2]);
* </pre>
*/
Dword Demodulator_readTunerRegisters (
IN Demodulator* demodulator,
IN Byte chip,
IN Word registerAddress,
IN Byte bufferLength,
IN Byte* buffer
);
/**
* Read a sequence of bytes from the contiguous registers in slave device
* through specified interface (1, 2, 3).
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 6 (one more byte to specify tuner address).
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param interfaceIndex the index of interface. The possible values are
* 1~3.
* @param slaveAddress the I2c address of slave device.
* @param bufferLength the number of registers to be read.
* @param buffer a byte array which is used to store values to be read.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
*/
Dword Demodulator_readGenericRegisters (
IN Demodulator* demodulator,
IN Byte chip,
IN Byte interfaceIndex,
IN Byte slaveAddress,
IN Byte bufferLength,
IN Byte* buffer
);
/**
* Read a sequence of bytes from the contiguous cells in the EEPROM.
* The maximum burst size is restricted by the capacity of bus. If bus
* could transfer N bytes in one cycle, then the maximum value of
* bufferLength would be N - 5 (firmware will detect EEPROM address).
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param registerAddress the start address of the cells to be read.
* @param registerAddressLength the valid bytes of registerAddress.
* @param bufferLength the number of cells to be read.
* @param buffer a byte array which is used to store values to be read.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte buffer[3];
* Ganymede ganymede;
*
* // Get the value of cell 0x0000, 0x0001, 0x0002 in EEPROM.
* error = Demodulator_readEepromValues ((Demodulator*) &ganymede, 0, 0x0000, 3, buffer);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* printf ("The value of 0x0000 is %2x", buffer[0]);
* printf ("The value of 0x0001 is %2x", buffer[1]);
* printf ("The value of 0x0002 is %2x", buffer[2]);
* </pre>
*/
Dword Demodulator_readEepromValues (
IN Demodulator* demodulator,
IN Byte chip,
IN Word registerAddress,
IN Byte bufferLength,
OUT Byte* buffer
);
/**
* Read bits of the specified register.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param processor The processor of specified register. Because each chip
* has two processor so user have to specify the processor. The
* possible values are Processor_LINK and Processor_OFDM.
* @param registerAddress the address of the register to be read.
* @param position the start position of bits to be read (0 means the
* LSB of the specifyed register).
* @param length the length of bits.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte value;
* Ganymede ganymede;
*
* // Read the LSB of register 0xA000 in demodulator.
* error = Demodulator_readRegisterBits ((Demodulator*) &ganymede, 0, Processor_LINK, 0xA000, 0, 1, &value);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* printf ("The value of LSB of 0xA000 is %2x", value);
* </pre>
*/
Dword Demodulator_readRegisterBits (
IN Demodulator* demodulator,
IN Byte chip,
IN Processor processor,
IN Dword registerAddress,
IN Byte position,
IN Byte length,
OUT Byte* value
);
/**
* Get the version of hardware.
*
* @param demodulator the handle of demodulator.
* @param version the version of hardware.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Dword version;
* Ganymede ganymede;
*
* // Add PID to PID filter.
* error = Demodulator_getHardwareVersion ((Demodulator*) &ganymede, &version);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("The version of hardware is : %X", version);
* </pre>
*/
Dword Demodulator_getHardwareVersion (
IN Demodulator* demodulator,
OUT Dword* version
);
/**
* Get the version of firmware.
*
* @param demodulator the handle of demodulator.
* @param version the version of firmware.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Dword version;
* Ganymede ganymede;
*
* // Get the version of Link layer firmware.
* error = Demodulator_getFirmwareVersion ((Demodulator*) &ganymede, Processor_LINK, &version);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("The version of firmware is : %X", version);
* </pre>
*/
Dword Demodulator_getFirmwareVersion (
IN Demodulator* demodulator,
IN Processor processor,
OUT Dword* version
);
/**
* Add PID to PID filter.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param index the index of PID filter.
* @param pid the PID that will be add to PID filter.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Pid pid;
* Ganymede ganymede;
*
* pid.value = 0x0000;
*
* // Add PID to PID filter.
* error = Demodulator_addPidToFilter ((Demodulator*) &ganymede, 0, 1, pid);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_addPidToFilter (
IN Demodulator* demodulator,
IN Byte chip,
IN Byte index,
IN Pid pid
);
/**
* Reset PID filter.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Ganymede ganymede;
*
* error = Demodulator_resetPidFilter ((Demodulator*) &ganymede, 0);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_resetPidFilter (
IN Demodulator* demodulator,
IN Byte chip
);
/**
* Get datagram from device.
*
* @param demodulator the handle of demodulator.
* @param bufferLength the number of registers to be read.
* @param buffer a byte array which is used to store values to be read.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @return Error_BUFFER_INSUFFICIENT: if buffer is too small.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Word bufferLength;
* Byte buffer[4096];
* Ganymede ganymede;
*
* bufferLength = 4096;
* error = Demodulator_getDatagram ((Demodulator*) &ganymede, &bufferLength, buffer);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_getDatagram (
IN Demodulator* demodulator,
OUT Dword* bufferLength,
OUT Byte* buffer
);
/**
* Get RF AGC gain.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param rfAgc the value of RF AGC.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte rfAgc;
* Ganymede ganymede;
*
* // Set I2C as the control bus.
* error = Demodulator_getRfAgcGain ((Demodulator*) &ganymede, 0, rfAgc);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_getRfAgcGain (
IN Demodulator* demodulator,
IN Byte chip,
OUT Byte* rfAgc
);
/**
* Get IF AGC.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param ifAgc the value of IF AGC.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Byte ifAgc;
* Ganymede ganymede;
*
* // Set I2C as the control bus.
* error = Demodulator_getIfAgcGain ((Demodulator*) &ganymede, 0, ifAgc);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_getIfAgcGain (
IN Demodulator* demodulator,
IN Byte chip,
OUT Byte* ifAgc
);
/**
* Load the IR table for USB device.
*
* @param demodulator the handle of demodulator.
* @param tableLength The length of IR table.
* @param table The content of IR table.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* </pre>
*/
Dword Demodulator_loadIrTable (
IN Demodulator* demodulator,
IN Word tableLength,
IN Byte* table
);
/**
* Load firmware to device
*
* @param demodulator the handle of demodulator.
* @firmwareCodes pointer to fw binary.
* @firmwareSegments pointer to fw segments.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
*/
Dword Demodulator_loadFirmware (
IN Demodulator* demodulator,
IN Byte* firmwareCodes,
IN Segment* firmwareSegments,
IN Byte* firmwarePartitions
);
/**
* First, download firmware from host to demodulator. Actually, firmware is
* put in firmware.h as a part of source code. Therefore, in order to
* update firmware the host have to re-compile the source code.
* Second, setting all parameters which will be need at the beginning.
*
* @param demodulator the handle of demodulator.
* @param chipNumber The total number of demodulators.
* @param sawBandwidth SAW filter bandwidth in KHz. The possible values
* are 6000, 7000, and 8000 (KHz).
* @param streamType The format of output stream.
* @param architecture the architecture of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Ganymede ganymede;
*
* // Initialize demodulators.
* // SAW Filter : 8MHz
* // Stream Type : IP Datagram.
* error = Demodulator_initialize ((Demodulator*) &ganymede, 1, 8, StreamType_IP_DATAGRAM, Architecture_DCA);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_initialize (
IN Demodulator* demodulator,
IN Byte chipNumber,
IN Word sawBandwidth,
IN StreamType streamType,
IN Architecture architecture
);
/**
* Power off the demodulators.
*
* @param demodulator the handle of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Ganymede ganymede;
*
* // Finalize demodulators.
* error = Demodulator_finalize ((Demodulator*) &ganymede);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_finalize (
IN Demodulator* demodulator
);
/**
*
* @param demodulator the handle of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* </pre>
*/
Dword Demodulator_isAgcLocked (
IN Demodulator* demodulator,
IN Byte chip,
OUT Bool* locked
);
/**
*
* @param demodulator the handle of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* </pre>
*/
Dword Demodulator_isCfoeLocked (
IN Demodulator* demodulator,
IN Byte chip,
OUT Bool* locked
);
/**
*
* @param demodulator the handle of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* </pre>
*/
Dword Demodulator_isSfoeLocked (
IN Demodulator* demodulator,
IN Byte chip,
OUT Bool* locked
);
/**
*
* @param demodulator the handle of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* </pre>
*/
Dword Demodulator_isTpsLocked (
IN Demodulator* demodulator,
IN Byte chip,
OUT Bool* locked
);
/**
*
* @param demodulator the handle of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* </pre>
*/
Dword Demodulator_isMpeg2Locked (
IN Demodulator* demodulator,
IN Byte chip,
OUT Bool* locked
);
/**
*
* @param demodulator the handle of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @param chip The index of demodulator. The possible values are
* 0~7. NOTE: When the architecture is set to Architecture_DCA
* this parameter is regard as don't care.
* @param locked the result of frequency tuning. True if there is
* demodulator can lock signal, False otherwise.
* @see Demodulator_acquireChannel
*/
Dword Demodulator_isLocked (
IN Demodulator* demodulator,
IN Byte chip,
OUT Bool* locked
);
/**
* Set priorty of modulation.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param priority modulation priority.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Ganymede ganymede;
*
* // Set priority.
* error = Demodulator_setPriority ((Demodulator*) &ganymede, 0, Priority_HIGH);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_setPriority (
IN Demodulator* demodulator,
IN Byte chip,
IN Priority priority
);
/**
* Reset demodulator.
*
* @param demodulator the handle of demodulator.
* @return Error_NO_ERROR: successful, non-zero error code otherwise.
* @example <pre>
* Dword error = Error_NO_ERROR;
* Ganymede ganymede;
*
* // Reset demodulator.
* error = Demodulator_reset ((Demodulator*) &ganymede);
* if (error)
* printf ("Error Code = %X", error);
* else
* printf ("Success");
* </pre>
*/
Dword Demodulator_reset (
IN Demodulator* demodulator
);
/**
* Get channel modulation related information.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param channelModulation The modulation of channel.
* @return Error_NO_ERROR: successful, other non-zero error code otherwise.
* @example <pre>
* </pre>
*/
Dword Demodulator_getChannelModulation (
IN Demodulator* demodulator,
IN Byte chip,
OUT ChannelModulation* channelModulation
);
/**
* Set channel modulation related information.
*
* @param demodulator the handle of demodulator.
* @param chip The index of demodulator. The possible values are
* 0~7.
* @param channelModulation The modulation of channel.
* @return Error_NO_ERROR: successful, other non-zero error code otherwise.
* @example <pre>
* </pre>
*/
Dword Demodulator_setChannelModulation (
IN Demodulator* demodulator,
IN Byte chip,
IN ChannelModulation* channelModulation
);
/**
* Specify the bandwidth of channel and tune the channel to the specific
* frequency. Afterwards, host could use output parameter dvbH to determine
* if there is a DVB-H signal.
* In DVB-T mode, after calling this function the output parameter dvbH
* should return False and host could use output parameter "locked" to check
* if the channel has correct TS output.