-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathptx_tuner_data.h
1086 lines (1048 loc) · 29.6 KB
/
ptx_tuner_data.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
#define PT1_MAX_ISDB_S_INIT 19 // ISDB-S 初期化データ数
#define PT1_MAX_ISDB_T_INIT 16 // ISDB-T 初期化データ数
#define PT2_MAX_ISDB_S_INIT 18 // ISDB-S 初期化データ数
#define PT2_MAX_ISDB_T_INIT 12 // ISDB-T 初期化データ数
#define MAX_BS_CHANNEL 36 // 周波数テーブル数
#define MAX_ISDB_T_CHANNEL 113 // 周波数テーブル数(地デジタル)
#define MAX_BS_CHANNEL_PLL_COMMAND 3 // PLLロックするためのコマンド数
#define MAX_BS_TS_ID 8 // TS-ID取得最大値
#define MAX_ISDB_T_INFO 3 // 地デジ階層情報数
#define MAX_ISDB_T_INFO_LEN 2 // 地デジ階層情報数
typedef struct _WBLOCK_BS_PLL {
const WBLOCK *wblock[MAX_BS_CHANNEL_PLL_COMMAND];
} WBLOCK_BS_PLL;
/***************************************************************************/
/* 省電力テーブル */
/***************************************************************************/
/*
ISDB-Sの省電力設定
C0 C1
送信:7Bit Address Mode(1b/19):17:00
ISDB-Sの省電力無効(2コマンド)
C0 C1
送信:7Bit Address Mode(1B/19):fe:c0:f0:04
送信:7Bit Address Mode(1B/19):17:01
*/
static const WBLOCK isdb_s_wake = {
0,
4,
{0xFE, 0xC0, 0xF0, 0x04}
};
static const WBLOCK isdb_s_sleep = {
0,
2,
{0x17, 0x00}
};
/*
ISDB-Tの省電力設定
C0 C1
送信:7Bit Address Mode(1A/18):03:80
ISDB-Tの省電力無効(2コマンド)
C0 C1
送信:7Bit Address Mode(1A/18):fe:c2
送信:7Bit Address Mode(1A/18):03:90
*/
static const WBLOCK isdb_t_wake = {
0,
2,
{0xFE, 0xC2}
};
static const WBLOCK isdb_t_sleep = {
0,
2,
{0x03, 0x80}
};
/***************************************************************************/
/* 初期化データ定義(共通) */
/***************************************************************************/
static const WBLOCK com_initdata = {
0,
2,
{0x01, 0x80}
};
/***************************************************************************/
/* 初期化データ定義(ISDB-S) */
/***************************************************************************/
// ISDB-S初期化値1
static const WBLOCK isdb_s_init1 ={
0,
1,
{0x0f}
};
// ISDB-S初期化値2
static const WBLOCK isdb_s_init2 ={
0,
2,
{0x04, 0x02}
};
// ISDB-S初期化値3
static const WBLOCK isdb_s_init3 ={
0,
2,
{0x0D, 0x55} //pt1 only
};
// ISDB-S初期化値4
static const WBLOCK isdb_s_init4 ={
0,
2,
{0x11, 0x40}
};
// ISDB-S初期化値5
static const WBLOCK isdb_s_init5 ={
0,
2,
{0x13, 0x80}
};
// ISDB-S初期化値6
static const WBLOCK isdb_s_init6 ={
0,
2,
{0x17, 0x01}
};
// ISDB-S初期化値7
static const WBLOCK isdb_s_init7 ={
0,
2,
{0x1C, 0x0A}
};
// ISDB-S初期化値8
static const WBLOCK isdb_s_init8 ={
0,
2,
{0x1D, 0xAA}
};
// ISDB-S初期化値9
static const WBLOCK isdb_s_init9 ={
0,
2,
{0x1E, 0x20}
};
// ISDB-S初期化値10
static const WBLOCK isdb_s_init10 ={
0,
2,
{0x1F, 0x88}
};
// ISDB-S初期化値11
static const WBLOCK isdb_s_init11 ={
0,
2,
{0x51, 0xB0}
};
// ISDB-S初期化値12
static const WBLOCK isdb_s_init12 ={
0,
2,
{0x52, 0x89}
};
// ISDB-S初期化値13
static const WBLOCK isdb_s_init13 ={
0,
2,
{0x53, 0xB3}
};
// ISDB-S初期化値14
static const WBLOCK isdb_s_init14 ={
0,
2,
{0x5A, 0x2D}
};
// ISDB-S初期化値15
static const WBLOCK isdb_s_init15 ={
0,
2,
{0x5B, 0xD3}
};
// ISDB-S初期化値16
static const WBLOCK isdb_s_init16 ={
0,
2,
{0x85, 0x69}
};
// ISDB-S初期化値17
static const WBLOCK isdb_s_init17 ={
0,
2,
{0x87, 0x04}
};
// ISDB-S初期化値18
static const WBLOCK isdb_s_init18 ={
0,
2,
{0x8E, 0x26}
};
// ISDB-S初期化値19
static const WBLOCK isdb_s_init19 ={
0,
2,
{0xA3, 0xF7}
};
// ISDB-S初期化値20
static const WBLOCK isdb_s_init20 ={
0,
2,
{0xA5, 0xC0}
};
// ISDB-S初期化値21
static const WBLOCK isdb_s_init21 ={
0,
4,
{0xFE, 0xC0, 0xF0, 0x04}
};
/***************************************************************************/
/* 初期化データ定義(ISDB-T) */
/***************************************************************************/
// ISDB-T初期化値1
static const WBLOCK isdb_t_init1 ={
0,
2,
{0x03, 0x90}
};
// ISDB-T初期化値2
static const WBLOCK isdb_t_init2 ={
0,
2,
{0x14, 0x8F} //pt1 only
};
// ISDB-T初期化値3
static const WBLOCK isdb_t_init3 ={
0,
2,
{0x1C, 0x2A}
};
// ISDB-T初期化値4
static const WBLOCK isdb_t_init4 ={
0,
2,
{0x1D, 0xA8}
};
// ISDB-T初期化値5
static const WBLOCK isdb_t_init5 ={
0,
2,
{0x1E, 0xA2}
};
// ISDB-T初期化値6
static const WBLOCK isdb_t_init6 ={
0,
2,
{0x22, 0x83}
};
// ISDB-T初期化値7
static const WBLOCK isdb_t_init7 ={
0,
2,
{0x31, 0x0D} //pt1
};
// ISDB-T初期化値8
static const WBLOCK isdb_t_init8 ={
0,
2,
{0x32, 0xE0} //pt1
};
// ISDB-T初期化値9
static const WBLOCK isdb_t_init9 ={
0,
2,
{0x39, 0xD3} //pt1
};
// ISDB-T初期化値10
static const WBLOCK isdb_t_init10 ={
0,
2,
{0x3A, 0x00}
};
// ISDB-T初期化値11
static const WBLOCK isdb_t_init11 ={
0,
2,
{0x5C, 0x40}
};
// ISDB-T初期化値12
static const WBLOCK isdb_t_init12 ={
0,
2,
{0x5F, 0x80}
};
// ISDB-T初期化値13
static const WBLOCK isdb_t_init13 ={
0,
2,
{0x75, 0x0a}
};
// ISDB-T初期化値14
static const WBLOCK isdb_t_init14 ={
0,
2,
{0x76, 0x4c}
};
// ISDB-T初期化値15
static const WBLOCK isdb_t_init15 ={
0,
2,
{0x77, 0x03}
};
// ISDB-T初期化値16
static const WBLOCK isdb_t_init16 ={
0,
2,
{0xEF, 0x01}
};
// ISDB-T初期化値17
static const WBLOCK isdb_t_init17 ={
0,
7,
{0xFE, 0xC2, 0x01, 0x8F, 0xC1, 0x80, 0x80}
};
/***************************************************************************/
/* 初期化データブロック定義(ISDB-S) */
/***************************************************************************/
static const WBLOCK *isdb_s_initial_pt1[PT1_MAX_ISDB_S_INIT] =
{
&isdb_s_init2, &isdb_s_init3, &isdb_s_init4, &isdb_s_init5,
&isdb_s_init6, &isdb_s_init7, &isdb_s_init8, &isdb_s_init9,
&isdb_s_init10, &isdb_s_init11, &isdb_s_init12, &isdb_s_init13,
&isdb_s_init14, &isdb_s_init15, &isdb_s_init16, &isdb_s_init17,
&isdb_s_init18, &isdb_s_init19, &isdb_s_init20
};
static const WBLOCK *isdb_s_initial_pt2[PT2_MAX_ISDB_S_INIT] =
{
&isdb_s_init2, &isdb_s_init4, &isdb_s_init5,
&isdb_s_init6, &isdb_s_init7, &isdb_s_init8, &isdb_s_init9,
&isdb_s_init10, &isdb_s_init11, &isdb_s_init12, &isdb_s_init13,
&isdb_s_init14, &isdb_s_init15, &isdb_s_init16, &isdb_s_init17,
&isdb_s_init18, &isdb_s_init19, &isdb_s_init20
};
/***************************************************************************/
/* 初期化データブロック定義(ISDB-T) */
/***************************************************************************/
static const WBLOCK *isdb_t_initial_pt1[PT1_MAX_ISDB_T_INIT] =
{
&isdb_t_init1, &isdb_t_init2, &isdb_t_init3, &isdb_t_init4,
&isdb_t_init5, &isdb_t_init6, &isdb_t_init7, &isdb_t_init8,
&isdb_t_init9, &isdb_t_init10, &isdb_t_init11, &isdb_t_init12,
&isdb_t_init13, &isdb_t_init14, &isdb_t_init15, &isdb_t_init16
};
static const WBLOCK *isdb_t_initial_pt2[PT2_MAX_ISDB_T_INIT] =
{
&isdb_t_init1, &isdb_t_init3, &isdb_t_init4,
&isdb_t_init5, &isdb_t_init6,
&isdb_t_init10, &isdb_t_init11, &isdb_t_init12,
&isdb_t_init13, &isdb_t_init14, &isdb_t_init15, &isdb_t_init16
};
/***************************************************************************/
/* 地上デジタル用データ */
/***************************************************************************/
/***************************************************************************/
/* 周波数設定基本テーブル */
/* 0〜1: 固定 */
/* 2〜3: 計算結果 */
/* 4〜5: 追加計算結果 */
/***************************************************************************/
static const WBLOCK isdb_t_pll_base = {
0,
2,
{0xFE, 0xC2, 0, 0, 0, 0, 0, 0}
};
/***************************************************************************/
/* 地デジ周波数ロックチェック */
/***************************************************************************/
static const WBLOCK isdb_t_pll_lock = {
0,
2,
{0xFE, 0xC3}
};
static const WBLOCK isdb_t_check_tune = {
0,
2,
{0x01, 0x40}
};
static const WBLOCK isdb_t_tune_read = {
0,
1,
{0x80}
};
static const WBLOCK isdb_t_tmcc_read_1 = {
0,
1,
{0xB2}
};
static const WBLOCK isdb_t_tmcc_read_2 = {
0,
1,
{0xB6}
};
/***************************************************************************/
/* 地デジ周波数ロックチェック */
/***************************************************************************/
static const WBLOCK isdb_t_signal1 = {
0,
1,
{0x8C}
};
static const WBLOCK isdb_t_signal2 = {
0,
1,
{0x8D}
};
static const WBLOCK isdb_t_agc2 = {
0,
1,
{0x82}
};
static const WBLOCK isdb_t_lockedt1 = {
0,
1,
{0x96}
};
static const WBLOCK isdb_t_lockedt2 = {
0,
1,
{0xB0}
};
static const WBLOCK isdb_t_get_clock = {
0,
1,
{0x86}
};
static const WBLOCK isdb_t_get_carrir = {
0,
1,
{0x84}
};
/***************************************************************************/
/* 地デジ用データ */
/***************************************************************************/
/***************************************************************************/
/* BS用データ */
/***************************************************************************/
/***************************************************************************/
/* BS周波数ロックチェック */
/***************************************************************************/
static const WBLOCK bs_pll_lock = {
0,
2,
{0xFE, 0xC1}
};
/***************************************************************************/
/* TMCC取得 */
/***************************************************************************/
static const WBLOCK bs_tmcc_get_1 = {
0,
2,
{0x03, 0x01}
};
static const WBLOCK bs_tmcc_get_2 = {
0,
1,
{0xC3}
};
/***************************************************************************/
/* TMCC取得 */
/***************************************************************************/
static const WBLOCK bs_get_slot_ts_id_1 = {
0,
1,
{0xCE}
};
static const WBLOCK bs_get_slot_ts_id_2 = {
0,
1,
{0xD2}
};
static const WBLOCK bs_get_slot_ts_id_3 = {
0,
1,
{0xD6}
};
static const WBLOCK bs_get_slot_ts_id_4 = {
0,
1,
{0xDA}
};
/***************************************************************************/
/* TS-IDロック */
/***************************************************************************/
static const WBLOCK bs_set_ts_lock = {
0,
3,
{0x8F, 0x00, 0x00}
};
/***************************************************************************/
/* TS-ID取得 */
/***************************************************************************/
static const WBLOCK bs_get_ts_lock = {
0,
1,
{0xE6}
};
/***************************************************************************/
/* スロット取得 */
/***************************************************************************/
static const WBLOCK bs_get_slot = {
0,
1,
{0xE8}
};
/***************************************************************************/
/* CN/AGC/MAXAGC取得 */
/***************************************************************************/
static const WBLOCK bs_get_signal1 = {
0,
1,
{0xBC}
};
static const WBLOCK bs_get_signal2 = {
0,
1,
{0xBD}
};
static const WBLOCK bs_get_agc = {
0,
1,
{0xBA}
};
/***************************************************************************/
/* クロック周波数誤差取得 */
/***************************************************************************/
static const WBLOCK bs_get_clock = {
0,
1,
{0xBE}
};
/***************************************************************************/
/* キャリア周波数誤差取得 */
/***************************************************************************/
static const WBLOCK bs_get_carrir = {
0,
1,
{0xBB}
};
/***************************************************************************/
/* 周波数設定テーブル */
/* BSに関してのみ。とりあえずテーブルとしたが、計算で算出出来るなら */
/* 計算で算出させる。 */
/***************************************************************************/
/***************************************************************************/
/* BS共通テーブル */
/***************************************************************************/
static const WBLOCK bs_com_step2 = {
0,
3,
{0xFE, 0xC0, 0xE4}
};
/***************************************************************************/
/* BS-1 */
/***************************************************************************/
static const WBLOCK bs_1_step1 = {
0,
6,
{0xFE, 0xC0, 0x48, 0x29, 0xE0, 0xD2}
};
static const WBLOCK bs_1_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xD6}
};
/***************************************************************************/
/* BS-3 */
/***************************************************************************/
static const WBLOCK bs_3_step1 = {
0,
6,
{0xFE, 0xC0, 0x44, 0x40, 0xE0, 0xE2}
};
static const WBLOCK bs_3_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xE6}
};
/***************************************************************************/
/* BS-5 */
/***************************************************************************/
static const WBLOCK bs_5_step1 = {
0,
6,
{0xFE, 0xC0, 0x44, 0x66, 0xE0, 0xE2}
};
static const WBLOCK bs_5_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xE6}
};
/***************************************************************************/
/* BS-7 */
/***************************************************************************/
static const WBLOCK bs_7_step1 = {
0,
6,
{0xFE, 0xC0, 0x44, 0x8D, 0xE0, 0x20}
};
static const WBLOCK bs_7_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x24}
};
/***************************************************************************/
/* BS-9 */
/***************************************************************************/
static const WBLOCK bs_9_step1 = {
0,
6,
{0xFE, 0xC0, 0x44, 0xB3, 0xE0, 0x20}
};
static const WBLOCK bs_9_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x24}
};
/***************************************************************************/
/* BS-11 */
/***************************************************************************/
static const WBLOCK bs_11_step1 = {
0,
6,
{0xFE, 0xC0, 0x44, 0xD9, 0xE0, 0x20}
};
static const WBLOCK bs_11_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x24}
};
/***************************************************************************/
/* BS-13 */
/***************************************************************************/
static const WBLOCK bs_13_step1 = {
0,
6,
{0xFE, 0xC0, 0x45, 0x00, 0xE0, 0x20}
};
static const WBLOCK bs_13_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x24}
};
/***************************************************************************/
/* BS-15 */
/***************************************************************************/
static const WBLOCK bs_15_step1 = {
0,
6,
{0xFE, 0xC0, 0x45, 0x26, 0xE0, 0x40}
};
static const WBLOCK bs_15_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x44}
};
/***************************************************************************/
/* BS-17 */
/***************************************************************************/
static const WBLOCK bs_17_step1 = {
0,
6,
{0xFE, 0xC0, 0x45, 0x4C, 0xE0, 0x40}
};
static const WBLOCK bs_17_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0X44}
};
/***************************************************************************/
/* BS-19 */
/***************************************************************************/
static const WBLOCK bs_19_step1 = {
0,
6,
{0xFE, 0xC0, 0x45, 0x73, 0xE0, 0x40}
};
static const WBLOCK bs_19_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x44}
};
/***************************************************************************/
/* BS-21 */
/***************************************************************************/
static const WBLOCK bs_21_step1 = {
0,
6,
{0xFE, 0xC0, 0x45, 0x99, 0xE0, 0x40}
};
static const WBLOCK bs_21_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x44}
};
/***************************************************************************/
/* BS-23 */
/***************************************************************************/
static const WBLOCK bs_23_step1 = {
0,
6,
{0xFE, 0xC0, 0x45, 0xBF, 0xE0, 0x60}
};
static const WBLOCK bs_23_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x64}
};
/***************************************************************************/
/* ND 2 */
/***************************************************************************/
static const WBLOCK nd_2_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0x4D, 0xE0, 0x60}
};
static const WBLOCK nd_2_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x64}
};
/***************************************************************************/
/* ND 4 */
/***************************************************************************/
static const WBLOCK nd_4_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0x75, 0xE0, 0x80}
};
static const WBLOCK nd_4_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x84}
};
/***************************************************************************/
/* ND 6 */
/***************************************************************************/
static const WBLOCK nd_6_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0x9D, 0xE0, 0x80}
};
static const WBLOCK nd_6_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x84}
};
/***************************************************************************/
/* ND 8 */
/***************************************************************************/
static const WBLOCK nd_8_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0xC5, 0xE0, 0x80}
};
static const WBLOCK nd_8_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x84}
};
/***************************************************************************/
/* ND 10 */
/***************************************************************************/
static const WBLOCK nd_10_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0xED, 0xE0, 0x80}
};
static const WBLOCK nd_10_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x84}
};
/***************************************************************************/
/* ND 12 */
/***************************************************************************/
static const WBLOCK nd_12_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0x15, 0xE0, 0xA0}
};
static const WBLOCK nd_12_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xA4}
};
/***************************************************************************/
/* ND 14 */
/***************************************************************************/
static const WBLOCK nd_14_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0x3D, 0xE0, 0xA0}
};
static const WBLOCK nd_14_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xA4}
};
/***************************************************************************/
/* ND 16 */
/***************************************************************************/
static const WBLOCK nd_16_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0x65, 0xE0, 0xA0}
};
static const WBLOCK nd_16_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xA4}
};
/***************************************************************************/
/* ND 18 */
/***************************************************************************/
static const WBLOCK nd_18_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0x8D, 0xE0, 0xA0}
};
static const WBLOCK nd_18_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xA4}
};
/***************************************************************************/
/* ND 20 */
/***************************************************************************/
static const WBLOCK nd_20_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0xB5, 0xE0, 0xC0}
};
static const WBLOCK nd_20_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xC4}
};
/***************************************************************************/
/* ND 22 */
/***************************************************************************/
static const WBLOCK nd_22_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0xDD, 0xE0, 0xC0}
};
static const WBLOCK nd_22_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xC4}
};
/***************************************************************************/
/* ND 24 */
/***************************************************************************/
static const WBLOCK nd_24_step1 = {
0,
6,
{0xFE, 0xC0, 0x48, 0x05, 0xE0, 0xC0}
};
static const WBLOCK nd_24_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xC4}
};
/***************************************************************************/
/* ND 1 */
/***************************************************************************/
static const WBLOCK nd_1_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0x39, 0xE0, 0x60}
};
static const WBLOCK nd_1_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x64}
};
/***************************************************************************/
/* ND 3 */
/***************************************************************************/
static const WBLOCK nd_3_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0x61, 0xE0, 0x80}
};
static const WBLOCK nd_3_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x84}
};
/***************************************************************************/
/* ND 5 */
/***************************************************************************/
static const WBLOCK nd_5_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0x89, 0xE0, 0x80}
};
static const WBLOCK nd_5_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x84}
};
/***************************************************************************/
/* ND 7 */
/***************************************************************************/
static const WBLOCK nd_7_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0xB1, 0xE0, 0x80}
};
static const WBLOCK nd_7_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x84}
};
/***************************************************************************/
/* ND 9 */
/***************************************************************************/
static const WBLOCK nd_9_step1 = {
0,
6,
{0xFE, 0xC0, 0x46, 0xD9, 0xE0, 0x80}
};
static const WBLOCK nd_9_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0x84}
};
/***************************************************************************/
/* ND 11 */
/***************************************************************************/
static const WBLOCK nd_11_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0x01, 0xE0, 0xA0}
};
static const WBLOCK nd_11_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xA4}
};
/***************************************************************************/
/* ND 13 */
/***************************************************************************/
static const WBLOCK nd_13_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0x29, 0xE0, 0xA0}
};
static const WBLOCK nd_13_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xA4}
};
/***************************************************************************/
/* ND 15 */
/***************************************************************************/
static const WBLOCK nd_15_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0x51, 0xE0, 0xA0}
};
static const WBLOCK nd_15_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xA4}
};
/***************************************************************************/
/* ND 17 */
/***************************************************************************/
static const WBLOCK nd_17_step1 = {
0,
6,
{0xFE, 0xC0, 0x47, 0x79, 0xE0, 0xA0}
};
static const WBLOCK nd_17_step3 = {
0,
4,
{0xFE, 0xC0, 0xF4, 0xA4}
};
/***************************************************************************/
/* ND 19 */
/***************************************************************************/