FreeCalypso > hg > fc-magnetite
annotate src/cs/layer1/cust0/l1_rf10.c @ 624:012028896cfb
FFS dev.c, Leonardo target: Fujitsu MB84VF5F5F4J2 #if 0'ed out
The FFS code we got from TI/Openmoko had a stanza for "Fujitsu MB84VF5F5F4J2
stacked device", using a fake device ID code that would need to be patched
manually into cfgffs.c (suppressing and overriding autodetection) and using
an FFS base address in the nCS2 bank, indicating that this FFS config was
probably meant for the MCP version of Leonardo which allows for 16 MiB flash
with a second bank on nCS2.
We previously had this FFS config stanza conditionalized under
CONFIG_TARGET_LEONARDO because the base address contained therein is invalid
for other targets, but now that we actually have a Leonardo build target in
FC Magnetite, I realize that the better approach is to #if 0 out this stanza
altogether: it is already non-functional because it uses a fake device ID
code, thus it is does not add support for more Leonardo board variants,
instead it is just noise.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 22 Dec 2019 21:24:29 +0000 |
parents | 91d64e076fb6 |
children |
rev | line source |
---|---|
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 T_RF rf = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 RF_PASCAL_20, //RF revision |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 RF_HW_BAND_SUPPORT, // radio_band_support E-GSM/DCS |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 { //RX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 { //AGC structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 140, // low_agc_noise_thr; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 110, // high_agc_sat_thr; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 6, // low_agc; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 34, // high_agc; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 //IL2AGC tables |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 { // below is: il2agc_pwr[121]; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 // il2agc_max[121]; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 // il2agc_av[121]; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 // il2agc_pwr |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 // Note this is shared between PCN and EGSM. |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 6, /* EGSM_MAX IL=0 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 6, /* EGSM_MAX IL=-1 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 6, /* EGSM_MAX IL=-2 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
22 6, /* EGSM_MAX IL=-3 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 6, /* EGSM_MAX IL=-4 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
24 6, /* EGSM_MAX IL=-5 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
25 6, /* EGSM_MAX IL=-6 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
26 6, /* EGSM_MAX IL=-7 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
27 6, /* EGSM_MAX IL=-8 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
28 6, /* EGSM_MAX IL=-9 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
29 6, /* EGSM_MAX IL=-10 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
30 6, /* EGSM_MAX IL=-11 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
31 6, /* EGSM_MAX IL=-12 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
32 6, /* EGSM_MAX IL=-13 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
33 6, /* EGSM_MAX IL=-14 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
34 6, /* EGSM_MAX IL=-15 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
35 6, /* EGSM_MAX IL=-16 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
36 6, /* EGSM_MAX IL=-17 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
37 6, /* EGSM_MAX IL=-18 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
38 6, /* EGSM_MAX IL=-19 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
39 6, /* EGSM_MAX IL=-20 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
40 6, /* EGSM_MAX IL=-21 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
41 6, /* EGSM_MAX IL=-22 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
42 6, /* EGSM_MAX IL=-23 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
43 6, /* EGSM_MAX IL=-24 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
44 6, /* EGSM_MAX IL=-25 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
45 6, /* EGSM_MAX IL=-26 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
46 6, /* EGSM_MAX IL=-27 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
47 6, /* EGSM_MAX IL=-28 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
48 6, /* EGSM_MAX IL=-29 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
49 6, /* EGSM_MAX IL=-30 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
50 6, /* EGSM_MAX IL=-31 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
51 6, /* EGSM_MAX IL=-32 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
52 6, /* EGSM_MAX IL=-33 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
53 6, /* EGSM_MAX IL=-34 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
54 6, /* EGSM_MAX IL=-35 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
55 6, /* EGSM_MAX IL=-36 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
56 6, /* EGSM_MAX IL=-37 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
57 6, /* EGSM_MAX IL=-38 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
58 6, /* EGSM_MAX IL=-39 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
59 6, /* EGSM_MAX IL=-40 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
60 6, /* EGSM_MAX IL=-41 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
61 6, /* EGSM_MAX IL=-42 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
62 6, /* EGSM_MAX IL=-43 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
63 6, /* EGSM_MAX IL=-44 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
64 6, /* EGSM_MAX IL=-45 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
65 6, /* EGSM_MAX IL=-46 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
66 6, /* EGSM_MAX IL=-47 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
67 8, /* EGSM_MAX IL=-48 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
68 8, /* EGSM_MAX IL=-49 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
69 10, /* EGSM_MAX IL=-50 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
70 10, /* EGSM_MAX IL=-51 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
71 12, /* EGSM_MAX IL=-52 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
72 12, /* EGSM_MAX IL=-53 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
73 14, /* EGSM_MAX IL=-54 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
74 14, /* EGSM_MAX IL=-55 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
75 16, /* EGSM_MAX IL=-56 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
76 16, /* EGSM_MAX IL=-57 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
77 18, /* EGSM_MAX IL=-58 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
78 18, /* EGSM_MAX IL=-59 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
79 20, /* EGSM_MAX IL=-60 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
80 20, /* EGSM_MAX IL=-61 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
81 22, /* EGSM_MAX IL=-62 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
82 22, /* EGSM_MAX IL=-63 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
83 24, /* EGSM_MAX IL=-64 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
84 24, /* EGSM_MAX IL=-65 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
85 26, /* EGSM_MAX IL=-66 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
86 26, /* EGSM_MAX IL=-67 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
87 28, /* EGSM_MAX IL=-68 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
88 28, /* EGSM_MAX IL=-69 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
89 30, /* EGSM_MAX IL=-70 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
90 30, /* EGSM_MAX IL=-71 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
91 32, /* EGSM_MAX IL=-72 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
92 32, /* EGSM_MAX IL=-73 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
93 34, /* EGSM_MAX IL=-74 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
94 34, /* EGSM_MAX IL=-75 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
95 36, /* EGSM_MAX IL=-76 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
96 36, /* EGSM_MAX IL=-77 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
97 38, /* EGSM_MAX IL=-78 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
98 38, /* EGSM_MAX IL=-79 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
99 40, /* EGSM_MAX IL=-80 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
100 40, /* EGSM_MAX IL=-81 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
101 42, /* EGSM_MAX IL=-82 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
102 42, /* EGSM_MAX IL=-83 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
103 44, /* EGSM_MAX IL=-84 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
104 44, /* EGSM_MAX IL=-85 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
105 46, /* EGSM_MAX IL=-86 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
106 46, /* EGSM_MAX IL=-87 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
107 48, /* EGSM_MAX IL=-88 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
108 48, /* EGSM_MAX IL=-89 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
109 50, /* EGSM_MAX IL=-90 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
110 50, /* EGSM_MAX IL=-91 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
111 50, /* EGSM_MAX IL=-92 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
112 50, /* EGSM_MAX IL=-93 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
113 50, /* EGSM_MAX IL=-94 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
114 50, /* EGSM_MAX IL=-95 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
115 50, /* EGSM_MAX IL=-96 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
116 50, /* EGSM_MAX IL=-97 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
117 50, /* EGSM_MAX IL=-98 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
118 50, /* EGSM_MAX IL=-99 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
119 50, /* EGSM_MAX IL=-100 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
120 50, /* EGSM_MAX IL=-101 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
121 50, /* EGSM_MAX IL=-102 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
122 50, /* EGSM_MAX IL=-103 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
123 50, /* EGSM_MAX IL=-104 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
124 50, /* EGSM_MAX IL=-105 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
125 50, /* EGSM_MAX IL=-106 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
126 50, /* EGSM_MAX IL=-107 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
127 50, /* EGSM_MAX IL=-108 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
128 50, /* EGSM_MAX IL=-109 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
129 50, /* EGSM_MAX IL=-110 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
130 50, /* EGSM_MAX IL=-111 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
131 50, /* EGSM_MAX IL=-112 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
132 50, /* EGSM_MAX IL=-113 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
133 50, /* EGSM_MAX IL=-114 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
134 50, /* EGSM_MAX IL=-115 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
135 50, /* EGSM_MAX IL=-116 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
136 50, /* EGSM_MAX IL=-117 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
137 50, /* EGSM_MAX IL=-118 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
138 50, /* EGSM_MAX IL=-119 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
139 50 /* EGSM_MAX IL=-120 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
140 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
141 { // il2agc_max |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
142 // Note this is shared between PCN and EGSM. |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
143 6, /* EGSM_MAX IL=0 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
144 6, /* EGSM_MAX IL=-1 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
145 6, /* EGSM_MAX IL=-2 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
146 6, /* EGSM_MAX IL=-3 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
147 6, /* EGSM_MAX IL=-4 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
148 6, /* EGSM_MAX IL=-5 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
149 6, /* EGSM_MAX IL=-6 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
150 6, /* EGSM_MAX IL=-7 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
151 6, /* EGSM_MAX IL=-8 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
152 6, /* EGSM_MAX IL=-9 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
153 6, /* EGSM_MAX IL=-10 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
154 6, /* EGSM_MAX IL=-11 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
155 6, /* EGSM_MAX IL=-12 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
156 6, /* EGSM_MAX IL=-13 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
157 6, /* EGSM_MAX IL=-14 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
158 6, /* EGSM_MAX IL=-15 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
159 6, /* EGSM_MAX IL=-16 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
160 6, /* EGSM_MAX IL=-17 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
161 6, /* EGSM_MAX IL=-18 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
162 6, /* EGSM_MAX IL=-19 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
163 6, /* EGSM_MAX IL=-20 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
164 6, /* EGSM_MAX IL=-21 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
165 6, /* EGSM_MAX IL=-22 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
166 6, /* EGSM_MAX IL=-23 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
167 6, /* EGSM_MAX IL=-24 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
168 6, /* EGSM_MAX IL=-25 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
169 6, /* EGSM_MAX IL=-26 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
170 6, /* EGSM_MAX IL=-27 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
171 6, /* EGSM_MAX IL=-28 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
172 6, /* EGSM_MAX IL=-29 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
173 6, /* EGSM_MAX IL=-30 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
174 6, /* EGSM_MAX IL=-31 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
175 6, /* EGSM_MAX IL=-32 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
176 6, /* EGSM_MAX IL=-33 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
177 6, /* EGSM_MAX IL=-34 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
178 6, /* EGSM_MAX IL=-35 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
179 6, /* EGSM_MAX IL=-36 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
180 6, /* EGSM_MAX IL=-37 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
181 6, /* EGSM_MAX IL=-38 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
182 6, /* EGSM_MAX IL=-39 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
183 6, /* EGSM_MAX IL=-40 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
184 6, /* EGSM_MAX IL=-41 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
185 6, /* EGSM_MAX IL=-42 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
186 6, /* EGSM_MAX IL=-43 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
187 6, /* EGSM_MAX IL=-44 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
188 6, /* EGSM_MAX IL=-45 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
189 6, /* EGSM_MAX IL=-46 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
190 6, /* EGSM_MAX IL=-47 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
191 8, /* EGSM_MAX IL=-48 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
192 8, /* EGSM_MAX IL=-49 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
193 10, /* EGSM_MAX IL=-50 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
194 10, /* EGSM_MAX IL=-51 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
195 12, /* EGSM_MAX IL=-52 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
196 12, /* EGSM_MAX IL=-53 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
197 14, /* EGSM_MAX IL=-54 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
198 14, /* EGSM_MAX IL=-55 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
199 16, /* EGSM_MAX IL=-56 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
200 16, /* EGSM_MAX IL=-57 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
201 18, /* EGSM_MAX IL=-58 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
202 18, /* EGSM_MAX IL=-59 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
203 20, /* EGSM_MAX IL=-60 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
204 20, /* EGSM_MAX IL=-61 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
205 22, /* EGSM_MAX IL=-62 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
206 22, /* EGSM_MAX IL=-63 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
207 24, /* EGSM_MAX IL=-64 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
208 24, /* EGSM_MAX IL=-65 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
209 26, /* EGSM_MAX IL=-66 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
210 26, /* EGSM_MAX IL=-67 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
211 28, /* EGSM_MAX IL=-68 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
212 28, /* EGSM_MAX IL=-69 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
213 30, /* EGSM_MAX IL=-70 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
214 30, /* EGSM_MAX IL=-71 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
215 32, /* EGSM_MAX IL=-72 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
216 32, /* EGSM_MAX IL=-73 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
217 34, /* EGSM_MAX IL=-74 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
218 34, /* EGSM_MAX IL=-75 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
219 36, /* EGSM_MAX IL=-76 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
220 36, /* EGSM_MAX IL=-77 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
221 38, /* EGSM_MAX IL=-78 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
222 38, /* EGSM_MAX IL=-79 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
223 40, /* EGSM_MAX IL=-80 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
224 40, /* EGSM_MAX IL=-81 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
225 42, /* EGSM_MAX IL=-82 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
226 42, /* EGSM_MAX IL=-83 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
227 44, /* EGSM_MAX IL=-84 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
228 44, /* EGSM_MAX IL=-85 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
229 46, /* EGSM_MAX IL=-86 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
230 46, /* EGSM_MAX IL=-87 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
231 48, /* EGSM_MAX IL=-88 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
232 48, /* EGSM_MAX IL=-89 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
233 50, /* EGSM_MAX IL=-90 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
234 50, /* EGSM_MAX IL=-91 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
235 50, /* EGSM_MAX IL=-92 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
236 50, /* EGSM_MAX IL=-93 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
237 50, /* EGSM_MAX IL=-94 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
238 50, /* EGSM_MAX IL=-95 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
239 50, /* EGSM_MAX IL=-96 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
240 50, /* EGSM_MAX IL=-97 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
241 50, /* EGSM_MAX IL=-98 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
242 50, /* EGSM_MAX IL=-99 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
243 50, /* EGSM_MAX IL=-100 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
244 50, /* EGSM_MAX IL=-101 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
245 50, /* EGSM_MAX IL=-102 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
246 50, /* EGSM_MAX IL=-103 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
247 50, /* EGSM_MAX IL=-104 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
248 50, /* EGSM_MAX IL=-105 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
249 50, /* EGSM_MAX IL=-106 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
250 50, /* EGSM_MAX IL=-107 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
251 50, /* EGSM_MAX IL=-108 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
252 50, /* EGSM_MAX IL=-109 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
253 50, /* EGSM_MAX IL=-110 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
254 50, /* EGSM_MAX IL=-111 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
255 50, /* EGSM_MAX IL=-112 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
256 50, /* EGSM_MAX IL=-113 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
257 50, /* EGSM_MAX IL=-114 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
258 50, /* EGSM_MAX IL=-115 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
259 50, /* EGSM_MAX IL=-116 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
260 50, /* EGSM_MAX IL=-117 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
261 50, /* EGSM_MAX IL=-118 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
262 50, /* EGSM_MAX IL=-119 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
263 50 /* EGSM_MAX IL=-120 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
264 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
265 { // il2agc_av |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
266 // Note this is shared between PCN and EGSM. |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
267 6, /* EGSM_AV IL=0 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
268 6, /* EGSM_AV IL=-1 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
269 6, /* EGSM_AV IL=-2 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
270 6, /* EGSM_AV IL=-3 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
271 6, /* EGSM_AV IL=-4 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
272 6, /* EGSM_AV IL=-5 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
273 6, /* EGSM_AV IL=-6 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
274 6, /* EGSM_AV IL=-7 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
275 6, /* EGSM_AV IL=-8 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
276 6, /* EGSM_AV IL=-9 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
277 6, /* EGSM_AV IL=-10 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
278 6, /* EGSM_AV IL=-11 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
279 6, /* EGSM_AV IL=-12 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
280 6, /* EGSM_AV IL=-13 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
281 6, /* EGSM_AV IL=-14 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
282 6, /* EGSM_AV IL=-15 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
283 6, /* EGSM_AV IL=-16 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
284 6, /* EGSM_AV IL=-17 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
285 6, /* EGSM_AV IL=-18 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
286 6, /* EGSM_AV IL=-19 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
287 6, /* EGSM_AV IL=-20 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
288 6, /* EGSM_AV IL=-21 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
289 6, /* EGSM_AV IL=-22 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
290 6, /* EGSM_AV IL=-23 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
291 6, /* EGSM_AV IL=-24 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
292 6, /* EGSM_AV IL=-25 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
293 6, /* EGSM_AV IL=-26 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
294 6, /* EGSM_AV IL=-27 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
295 6, /* EGSM_AV IL=-28 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
296 6, /* EGSM_AV IL=-29 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
297 6, /* EGSM_AV IL=-30 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
298 6, /* EGSM_AV IL=-31 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
299 6, /* EGSM_AV IL=-32 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
300 6, /* EGSM_AV IL=-33 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
301 6, /* EGSM_AV IL=-34 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
302 6, /* EGSM_AV IL=-35 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
303 6, /* EGSM_AV IL=-36 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
304 6, /* EGSM_AV IL=-37 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
305 6, /* EGSM_AV IL=-38 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
306 6, /* EGSM_AV IL=-39 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
307 6, /* EGSM_AV IL=-40 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
308 6, /* EGSM_AV IL=-41 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
309 6, /* EGSM_AV IL=-42 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
310 6, /* EGSM_AV IL=-43 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
311 6, /* EGSM_AV IL=-44 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
312 6, /* EGSM_AV IL=-45 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
313 6, /* EGSM_AV IL=-46 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
314 6, /* EGSM_AV IL=-47 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
315 8, /* EGSM_AV IL=-48 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
316 8, /* EGSM_AV IL=-49 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
317 10, /* EGSM_AV IL=-50 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
318 10, /* EGSM_AV IL=-51 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
319 12, /* EGSM_AV IL=-52 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
320 12, /* EGSM_AV IL=-53 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
321 14, /* EGSM_AV IL=-54 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
322 14, /* EGSM_AV IL=-55 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
323 16, /* EGSM_AV IL=-56 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
324 16, /* EGSM_AV IL=-57 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
325 18, /* EGSM_AV IL=-58 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
326 18, /* EGSM_AV IL=-59 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
327 20, /* EGSM_AV IL=-60 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
328 20, /* EGSM_AV IL=-61 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
329 22, /* EGSM_AV IL=-62 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
330 22, /* EGSM_AV IL=-63 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
331 24, /* EGSM_AV IL=-64 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
332 24, /* EGSM_AV IL=-65 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
333 26, /* EGSM_AV IL=-66 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
334 26, /* EGSM_AV IL=-67 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
335 28, /* EGSM_AV IL=-68 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
336 28, /* EGSM_AV IL=-69 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
337 30, /* EGSM_AV IL=-70 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
338 30, /* EGSM_AV IL=-71 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
339 32, /* EGSM_AV IL=-72 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
340 32, /* EGSM_AV IL=-73 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
341 34, /* EGSM_AV IL=-74 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
342 34, /* EGSM_AV IL=-75 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
343 36, /* EGSM_AV IL=-76 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
344 36, /* EGSM_AV IL=-77 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
345 38, /* EGSM_AV IL=-78 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
346 38, /* EGSM_AV IL=-79 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
347 40, /* EGSM_AV IL=-80 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
348 40, /* EGSM_AV IL=-81 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
349 42, /* EGSM_AV IL=-82 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
350 42, /* EGSM_AV IL=-83 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
351 44, /* EGSM_AV IL=-84 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
352 44, /* EGSM_AV IL=-85 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
353 46, /* EGSM_AV IL=-86 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
354 46, /* EGSM_AV IL=-87 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
355 48, /* EGSM_AV IL=-88 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
356 48, /* EGSM_AV IL=-89 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
357 50, /* EGSM_AV IL=-90 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
358 50, /* EGSM_AV IL=-91 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
359 50, /* EGSM_AV IL=-92 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
360 50, /* EGSM_AV IL=-93 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
361 50, /* EGSM_AV IL=-94 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
362 50, /* EGSM_AV IL=-95 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
363 50, /* EGSM_AV IL=-96 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
364 50, /* EGSM_AV IL=-97 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
365 50, /* EGSM_AV IL=-98 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
366 50, /* EGSM_AV IL=-99 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
367 50, /* EGSM_AV IL=-100 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
368 50, /* EGSM_AV IL=-101 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
369 50, /* EGSM_AV IL=-102 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
370 50, /* EGSM_AV IL=-103 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
371 50, /* EGSM_AV IL=-104 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
372 50, /* EGSM_AV IL=-105 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
373 50, /* EGSM_AV IL=-106 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
374 50, /* EGSM_AV IL=-107 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
375 50, /* EGSM_AV IL=-108 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
376 50, /* EGSM_AV IL=-109 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
377 50, /* EGSM_AV IL=-110 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
378 50, /* EGSM_AV IL=-111 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
379 50, /* EGSM_AV IL=-112 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
380 50, /* EGSM_AV IL=-113 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
381 50, /* EGSM_AV IL=-114 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
382 50, /* EGSM_AV IL=-115 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
383 50, /* EGSM_AV IL=-116 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
384 50, /* EGSM_AV IL=-117 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
385 50, /* EGSM_AV IL=-118 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
386 50, /* EGSM_AV IL=-119 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
387 50 /* EGSM_AV IL=-120 */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
388 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
389 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
390 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
391 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
392 {0, 0}, // ramp up and down delays |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
393 GUARD_BITS, // number of guard bits needed for ramp up |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
394 PRG_TX // propagation delay PRG_TX |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
395 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
396 { //AFC parameters |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
397 EEPROM_AFC, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
398 C_Psi_sta_inv, // (1/C_Psi_sta) |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
399 C_Psi_st, // C_Psi_sta * 0.8 F0.16 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
400 C_Psi_st_32, // F0.32 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
401 C_Psi_st_inv // (1/C_Psi_st) |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
402 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
403 #if (VCXO_ALGO == 1) |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
404 ,C_AFC_DAC_CENTER, // VCXO startup parameter - best guess |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
405 C_AFC_DAC_MIN, // VCXO startup parameter - 15ppm |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
406 C_AFC_DAC_MAX, // VCXO startup parameter + 15ppm |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
407 C_AFC_SNR_THR // snr - Default threshold value |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
408 #endif |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
409 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
410 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
411 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
412 T_RF_BAND rf_band[GSM_BANDS]; //uninitialised rf struct for bands |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
413 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
414 const T_RF_BAND rf_900 = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
415 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
416 { //RX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
417 //T_RX_CAL_PARAMS rx_cal_params |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
418 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
419 193, //g_magic |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
420 40, //lna_gain_max * 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
421 40, //lna_th_high |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
422 44 //lna_th_low |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
423 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
424 { //T_RF_AGC_BAND agc_bands[RF_RX_CAL_CHAN_SIZE]; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
425 // Remark: ARFCN=0 (GSM-E) is maintained by 1st GSM subbband. |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
426 // upper_bound, agc_calib |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
427 { 10, 1}, // sub-band1 up to arfcn = 10, Agc calibration = 0db |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
428 { 30, 1}, // sub-band2 up to arfcn = 30, Agc calibration = 0db |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
429 { 51, 0}, // sub-band3 up to arfcn = 51, Agc calibration = 0db |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
430 { 71, 0}, // etc. |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
431 { 90, 1}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
432 { 112, 1}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
433 { 124, 2}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
434 { 991, 3}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
435 {1009, 2}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
436 {1023, 1}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
437 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
438 { //RX temperature compensation |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
439 { -15 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
440 { -5 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
441 { 6 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
442 { 16 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
443 { 25 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
444 { 35 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
445 { 45 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
446 { 56 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
447 { 66 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
448 { 75 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
449 { 100 , 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
450 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
451 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
452 { //TX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
453 {// gsm900 T_LEVEL_TX |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
454 { 510, 0, 0 }, // 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
455 { 510, 0, 0 }, // 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
456 { 510, 0, 0 }, // 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
457 { 510, 0, 0 }, // 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
458 { 510, 0, 0 }, // 4 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
459 { 510, 0, 0 }, // 5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
460 { 449, 1, 0 }, // 6 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
461 { 361, 2, 0 }, // 7 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
462 { 291, 3, 0 }, // 8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
463 { 236, 4, 0 }, // 9 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
464 { 192, 5, 0 }, // 10 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
465 { 157, 6, 0 }, // 11 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
466 { 130, 7, 0 }, // 12 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
467 { 107, 8, 0 }, // 13 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
468 { 86, 9, 0 }, // 14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
469 { 71, 10, 0 }, // 15 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
470 { 61, 11, 0 }, // 16 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
471 { 52, 12, 0 }, // 17 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
472 { 47, 13, 0 }, // 18 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
473 { 43, 14, 0 }, // 19 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
474 { 43, 14, 0 }, // 20 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
475 { 43, 14, 0 }, // 21 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
476 { 43, 14, 0 }, // 22 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
477 { 43, 14, 0 }, // 23 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
478 { 43, 14, 0 }, // 24 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
479 { 43, 14, 0 }, // 25 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
480 { 43, 14, 0 }, // 26 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
481 { 43, 14, 0 }, // 27 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
482 { 43, 14, 0 }, // 28 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
483 { 43, 14, 0 }, // 29 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
484 { 43, 14, 0 }, // 30 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
485 { 43, 14, 0 }, // 31 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
486 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
487 {// Channel Calibration Talbles |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
488 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
489 { 27, 126 }, // Calibration Table 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
490 { 47, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
491 { 66, 129 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
492 { 85, 129 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
493 { 104, 133 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
494 { 124, 133 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
495 { 994, 125 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
496 { 1023, 125 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
497 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
498 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
499 { 27, 128 }, // Calibration Table 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
500 { 47, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
501 { 66, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
502 { 85, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
503 { 104, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
504 { 124, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
505 { 994, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
506 { 1023, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
507 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
508 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
509 { 27, 128 }, // Calibration Table 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
510 { 47, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
511 { 66, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
512 { 85, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
513 { 104, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
514 { 124, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
515 { 994, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
516 { 1023, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
517 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
518 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
519 { 27, 128 }, // Calibration Table 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
520 { 47, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
521 { 66, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
522 { 85, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
523 { 104, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
524 { 124, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
525 { 994, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
526 { 1023, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
527 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
528 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
529 { // GSM Power Ramp Values |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
530 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
531 {// Ramp-Up #0 profile - Power Level 5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
532 0,0,0,0,0,0,0,0,0,10,31,31,31,15,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
533 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
534 {// Ramp-Down #0 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
535 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
536 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
537 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
538 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
539 {// Ramp-Up #1 profile - Power Level 6 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
540 0,0,0,0,0,0,0,0,0,10,31,31,31,15,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
541 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
542 {// Ramp-Down #1 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
543 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
544 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
545 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
546 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
547 {// Ramp-Up #2 profile - Power Level 7 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
548 0,0,0,0,0,0,0,0,0,6,19,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
549 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
550 {// Ramp-Down #2 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
551 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
552 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
553 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
554 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
555 {// Ramp-Up #3 profile - Power Level 8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
556 0,0,0,0,0,0,0,0,0,6,19,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
557 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
558 {// Ramp-Down #3 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
559 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
560 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
561 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
562 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
563 {// Ramp-Up #4 profile - Power Level 9 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
564 0,0,0,0,0,0,0,0,0,9,16,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
565 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
566 {// Ramp-Down #4 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
567 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
568 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
569 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
570 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
571 {// Ramp-Up #5 profile - Power Level 10 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
572 0,0,0,0,0,0,0,0,0,9,16,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
573 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
574 {// Ramp-Down #5 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
575 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
576 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
577 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
578 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
579 {// Ramp-Up #6 profile - Power Level 11 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
580 0,0,0,0,0,0,0,0,0,9,16,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
581 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
582 {// Ramp-Down #6 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
583 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
584 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
585 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
586 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
587 {// Ramp-Up #7 profile - Power Level 12 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
588 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
589 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
590 {// Ramp-Down #7 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
591 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
592 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
593 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
594 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
595 {// Ramp-Up #8 profile - Power Level 13 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
596 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
597 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
598 {// Ramp-Down #8 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
599 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
600 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
601 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
602 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
603 {// Ramp-Up #9 profile - Power Level 14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
604 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
605 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
606 {// Ramp-Down #9 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
607 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
608 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
609 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
610 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
611 {// Ramp-Up #10 profile - Power Level 15 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
612 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
613 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
614 {// Ramp-Down #10 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
615 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
616 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
617 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
618 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
619 {// Ramp-Up #11 profile - Power Level 16 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
620 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
621 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
622 {// Ramp-Down #11 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
623 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
624 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
625 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
626 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
627 {// Ramp-Up #12 profile - Power Level 17 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
628 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
629 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
630 {// Ramp-Down #12 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
631 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
632 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
633 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
634 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
635 {// Ramp-Up #13 profile - Power Level 18 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
636 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
637 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
638 {// Ramp-Down #13 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
639 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
640 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
641 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
642 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
643 {// Ramp-Up #14 profile - Power Level 19 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
644 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
645 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
646 {// Ramp-Down #14 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
647 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
648 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
649 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
650 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
651 {// Ramp-Up #15 profile - Power Level 19 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
652 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
653 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
654 {// Ramp-Down #15 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
655 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
656 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
657 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
658 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
659 { //TX temperature compensation |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
660 #if (ORDER2_TX_TEMP_CAL==1) |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
661 { -11, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
662 { +9, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
663 { +39, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
664 { +59, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
665 { 127, 0, 0, 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
666 #else |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
667 { -11, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
668 { +9, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
669 { +39, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
670 { +59, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
671 { 127, 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
672 #endif |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
673 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
674 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
675 //IQ swap |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
676 SWAP_IQ_GSM, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
677 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
678 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
679 const T_RF_BAND rf_1800 = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
680 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
681 { //RX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
682 { //T_RX_CAL_PARAMS rx_cal_params |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
683 188, //g_magic |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
684 40, //lna gain * 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
685 40, //lna_th_high |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
686 44 //lna_th_low |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
687 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
688 { //T_RF_AGC_BAND agc_bands[RF_RX_CAL_CHAN_SIZE]; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
689 /*--------------*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
690 /*-- DCS band --*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
691 /*--------------*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
692 {548, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
693 {622, 1}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
694 {680, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
695 {745, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
696 {812, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
697 {860, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
698 {885, 2}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
699 { 991, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
700 { 992, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
701 {1023, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
702 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
703 { //RX temperature compensation |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
704 { -15 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
705 { -5 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
706 { 6 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
707 { 16 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
708 { 25 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
709 { 35 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
710 { 45 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
711 { 56 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
712 { 66 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
713 { 75 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
714 { 100 , 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
715 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
716 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
717 { //TX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
718 {// dcs1800 T_LEVEL_TX |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
719 { 463, 0, 0 }, // 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
720 { 376, 1, 0 }, // 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
721 { 309, 2, 0 }, // 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
722 { 255, 3, 0 }, // 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
723 { 211, 4, 0 }, // 4 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
724 { 176, 5, 0 }, // 5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
725 { 146, 6, 0 }, // 6 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
726 { 122, 7, 0 }, // 7 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
727 { 99, 8, 0 }, // 8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
728 { 83, 9, 0 }, // 9 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
729 { 70, 10, 0 }, // 10 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
730 { 58, 11, 0 }, // 11 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
731 { 47, 12, 0 }, // 12 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
732 { 38, 13, 0 }, // 13 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
733 { 32, 14, 0 }, // 14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
734 { 26, 15, 0 }, // 15 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
735 { 26, 15, 0 }, // 16 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
736 { 26, 15, 0 }, // 17 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
737 { 26, 15, 0 }, // 18 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
738 { 26, 15, 0 }, // 19 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
739 { 26, 15, 0 }, // 20 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
740 { 26, 15, 0 }, // 21 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
741 { 26, 15, 0 }, // 22 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
742 { 26, 15, 0 }, // 23 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
743 { 26, 15, 0 }, // 24 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
744 { 26, 15, 0 }, // 25 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
745 { 26, 15, 0 }, // 26 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
746 { 26, 15, 0 }, // 27 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
747 { 26, 15, 0 }, // 28 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
748 { 463, 0, 0 }, // 29 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
749 { 463, 0, 0 }, // 30 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
750 { 463, 0, 0 }, // 31 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
751 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
752 {// Channel Calibration Talbles |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
753 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
754 { 553, 128 }, // Calibration Table 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
755 { 594, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
756 { 636, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
757 { 677, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
758 { 720, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
759 { 760, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
760 { 802, 127 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
761 { 885, 127 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
762 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
763 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
764 { 553, 128 }, // Calibration Table 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
765 { 594, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
766 { 636, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
767 { 677, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
768 { 720, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
769 { 760, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
770 { 802, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
771 { 885, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
772 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
773 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
774 { 553, 128 }, // Calibration Table 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
775 { 594, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
776 { 636, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
777 { 677, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
778 { 720, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
779 { 760, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
780 { 802, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
781 { 885, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
782 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
783 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
784 { 553, 128 }, // Calibration Table 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
785 { 594, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
786 { 636, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
787 { 677, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
788 { 720, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
789 { 760, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
790 { 802, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
791 { 885, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
792 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
793 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
794 { // DCS Power Ramp Values |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
795 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
796 {// Ramp-Up #0 profile - Power Level 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
797 0,0,0,0,0,0,0,0,0,5,20,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
798 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
799 {// Ramp-Down #0 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
800 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
801 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
802 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
803 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
804 {// Ramp-Up #1 profile - Power Level 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
805 0,0,0,0,0,0,0,0,0,5,20,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
806 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
807 {// Ramp-Down #1 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
808 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
809 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
810 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
811 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
812 {// Ramp-Up #2 profile - Power Level 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
813 0,0,0,0,0,0,0,0,0,5,20,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
814 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
815 {// Ramp-Down #2 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
816 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
817 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
818 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
819 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
820 {// Ramp-Up #3 profile - Power Level 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
821 0,0,0,0,0,0,0,0,0,5,20,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
822 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
823 {// Ramp-Down #3 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
824 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
825 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
826 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
827 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
828 {// Ramp-Up #4 profile - Power Level 4 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
829 0,0,0,0,0,0,0,0,0,5,20,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
830 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
831 {// Ramp-Down #4 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
832 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
833 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
834 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
835 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
836 {// Ramp-Up #5 profile - Power Level 5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
837 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
838 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
839 {// Ramp-Down #5 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
840 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
841 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
842 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
843 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
844 {// Ramp-Up #6 profile - Power Level 6 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
845 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
846 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
847 {// Ramp-Down #6 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
848 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
849 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
850 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
851 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
852 {// Ramp-Up #7 profile - Power Level 7 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
853 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
854 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
855 {// Ramp-Down #7 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
856 0 ,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
857 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
858 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
859 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
860 {// Ramp-Up #8 profile - Power Level 8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
861 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
862 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
863 {// Ramp-Down #8 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
864 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
865 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
866 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
867 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
868 {// Ramp-Up #9 profile - Power Level 9 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
869 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
870 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
871 {// Ramp-Down #9 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
872 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
873 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
874 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
875 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
876 {// Ramp-Up #10 profile - Power Level 10 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
877 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
878 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
879 {// Ramp-Down #10 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
880 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
881 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
882 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
883 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
884 {// Ramp-Up #11 profile - Power Level 11 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
885 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
886 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
887 {// Ramp-Down #11 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
888 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
889 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
890 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
891 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
892 {// Ramp-Up #12 profile - Power Level 12 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
893 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
894 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
895 {// Ramp-Down #12 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
896 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
897 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
898 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
899 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
900 {// Ramp-Up #13 profile - Power Level 13 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
901 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
902 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
903 {// Ramp-Down #13 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
904 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
905 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
906 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
907 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
908 {// Ramp-Up #14 profile - Power Level 14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
909 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
910 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
911 {// Ramp-Down #14 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
912 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
913 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
914 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
915 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
916 {// Ramp-Up #15 profile - Power Level 15 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
917 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
918 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
919 {// Ramp-Down #15 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
920 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
921 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
922 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
923 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
924 { //TX temperature compensation |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
925 #if (ORDER2_TX_TEMP_CAL==1) |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
926 { -11, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
927 { +9, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
928 { +39, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
929 { +59, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
930 { 127, 0, 0, 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
931 #else |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
932 { -11, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
933 { +9, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
934 { +39, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
935 { +59, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
936 { 127, 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
937 #endif |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
938 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
939 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
940 //IQ swap |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
941 SWAP_IQ_DCS |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
942 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
943 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
944 //copy from gsm900 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
945 const T_RF_BAND rf_850 = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
946 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
947 { //RX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
948 //T_RX_CAL_PARAMS rx_cal_params |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
949 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
950 181, //g_magic |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
951 40, //lna_gain_max * 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
952 40, //lna_th_high |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
953 44 //lna_th_low |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
954 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
955 { //T_RF_AGC_BAND agc_bands[RF_RX_CAL_CHAN_SIZE]; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
956 // Remark: ARFCN=0 (GSM-E) is maintained by 1st GSM subbband. |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
957 // upper_bound, agc_calib |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
958 { 10, 0}, // sub-band1 up to arfcn = 10, Agc calibration = 0db |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
959 { 30, 0}, // sub-band2 up to arfcn = 30, Agc calibration = 0db |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
960 { 51, 0}, // sub-band3 up to arfcn = 51, Agc calibration = 0db |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
961 { 71, 0}, // etc. |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
962 { 90, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
963 { 112, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
964 { 124, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
965 { 991, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
966 { 992, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
967 {1023, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
968 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
969 { //RX temperature compensation |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
970 { -15 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
971 { -5 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
972 { 6 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
973 { 16 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
974 { 25 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
975 { 35 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
976 { 45 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
977 { 56 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
978 { 66 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
979 { 75 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
980 { 100 , 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
981 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
982 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
983 { //TX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
984 {// gsm850 T_LEVEL_TX |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
985 { 510, 0, 0 }, // 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
986 { 510, 0, 0 }, // 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
987 { 510, 0, 0 }, // 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
988 { 510, 0, 0 }, // 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
989 { 510, 0, 0 }, // 4 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
990 { 510, 0, 0 }, // 5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
991 { 449, 1, 0 }, // 6 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
992 { 361, 2, 0 }, // 7 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
993 { 291, 3, 0 }, // 8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
994 { 236, 4, 0 }, // 9 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
995 { 192, 5, 0 }, // 10 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
996 { 157, 6, 0 }, // 11 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
997 { 130, 7, 0 }, // 12 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
998 { 107, 8, 0 }, // 13 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
999 { 86, 9, 0 }, // 14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1000 { 71, 10, 0 }, // 15 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1001 { 61, 11, 0 }, // 16 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1002 { 52, 12, 0 }, // 17 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1003 { 47, 13, 0 }, // 18 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1004 { 43, 14, 0 }, // 19 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1005 { 43, 14, 0 }, // 20 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1006 { 43, 14, 0 }, // 21 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1007 { 43, 14, 0 }, // 22 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1008 { 43, 14, 0 }, // 23 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1009 { 43, 14, 0 }, // 24 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1010 { 43, 14, 0 }, // 25 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1011 { 43, 14, 0 }, // 26 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1012 { 43, 14, 0 }, // 27 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1013 { 43, 14, 0 }, // 28 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1014 { 43, 14, 0 }, // 29 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1015 { 43, 14, 0 }, // 30 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1016 { 43, 14, 0 }, // 31 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1017 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1018 {// Channel Calibration Talbles |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1019 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1020 { 40, 128 }, // Calibration Table 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1021 { 80, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1022 { 124, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1023 { 586, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1024 { 661, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1025 { 736, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1026 { 885, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1027 { 1023, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1028 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1029 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1030 { 554, 128 }, // Calibration Table 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1031 { 722, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1032 { 746, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1033 { 774, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1034 { 808, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1035 { 851, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1036 { 870, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1037 { 885, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1038 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1039 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1040 { 40, 128 }, // Calibration Table 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1041 { 80, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1042 { 124, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1043 { 586, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1044 { 661, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1045 { 736, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1046 { 885, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1047 { 1023, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1048 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1049 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1050 { 40, 128 }, // Calibration Table 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1051 { 80, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1052 { 124, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1053 { 586, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1054 { 661, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1055 { 736, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1056 { 885, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1057 { 1023, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1058 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1059 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1060 { //Ramp profiles 850 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1061 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1062 {// Ramp-Up #0 profile - Power Level 5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1063 0,0,0,0,0,0,0,0,0,10,31,31,31,15,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1064 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1065 { //Ramp-Down #0 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1066 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1067 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1068 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1069 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1070 {// Ramp-Up #1 profile - Power Level 6 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1071 0,0,0,0,0,0,0,0,0,10,31,31,31,15,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1072 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1073 { //Ramp-Down #1 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1074 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1075 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1076 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1077 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1078 {// Ramp-Up #2 profile - Power Level 7 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1079 0,0,0,0,0,0,0,0,0,6,19,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1080 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1081 { //Ramp-Down #2 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1082 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1083 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1084 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1085 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1086 {// Ramp-Up #3 profile - Power Level 8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1087 0,0,0,0,0,0,0,0,0,6,19,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1088 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1089 { //Ramp-Down #3 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1090 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1091 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1092 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1093 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1094 {// Ramp-Up #4 profile - Power Level 9 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1095 0,0,0,0,0,0,0,0,0,9,16,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1096 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1097 { //Ramp-Down #4 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1098 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1099 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1100 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1101 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1102 {// Ramp-Up #5 profile - Power Level 10 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1103 0,0,0,0,0,0,0,0,0,9,16,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1104 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1105 { //Ramp-Down #5 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1106 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1107 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1108 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1109 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1110 {// Ramp-Up #6 profile - Power Level 11 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1111 0,0,0,0,0,0,0,0,0,9,16,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1112 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1113 { //Ramp-Down #6 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1114 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1115 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1116 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1117 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1118 {// Ramp-Up #7 profile - Power Level 12 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1119 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1120 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1121 { //Ramp-Down #7 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1122 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1123 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1124 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1125 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1126 {// Ramp-Up #8 profile - Power Level 13 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1127 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1129 { //Ramp-Down #8 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1130 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1131 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1132 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1133 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1134 {// Ramp-Up #9 profile - Power Level 14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1135 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1136 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1137 { //Ramp-Down #9 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1138 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1139 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1140 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1141 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1142 {// Ramp-Up #10 profile - Power Level 15 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1143 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1144 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1145 { //Ramp-Down #10 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1146 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1147 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1148 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1149 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1150 {// Ramp-Up #11 profile - Power Level 16 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1151 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1152 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1153 { //Ramp-Down #11 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1154 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1155 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1156 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1157 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1158 {// Ramp-Up #12 profile - Power Level 17 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1159 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1160 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1161 { //Ramp-Down #12 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1162 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1163 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1164 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1165 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1166 {// Ramp-Up #13 profile - Power Level 18 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1167 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1168 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1169 { //Ramp-Down #13 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1170 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1171 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1172 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1173 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1174 {// Ramp-Up #14 profile - Power Level 19 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1175 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1176 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1177 { //Ramp-Down #14 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1178 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1179 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1180 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1181 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1182 {// Ramp-Up #15 profile - Power Level 19 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1183 0,0,0,0,0,0,0,0,0,0,25,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1184 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1185 {// Ramp-Down #15 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1186 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1187 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1188 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1189 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1190 { //TX temperature compensation |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1191 #if (ORDER2_TX_TEMP_CAL==1) |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1192 { -11, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1193 { +9, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1194 { +39, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1195 { +59, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1196 { 127, 0, 0, 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1197 #else |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1198 { -11, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1199 { +9, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1200 { +39, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1201 { +59, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1202 { 127, 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1203 #endif |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1204 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1205 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1206 //IQ swap |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1207 SWAP_IQ_GSM850, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1208 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1209 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1210 //copy from dcs1800 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1211 const T_RF_BAND rf_1900 = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1212 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1213 { //RX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1214 { //T_RX_CAL_PARAMS rx_cal_params |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1215 186, //g_magic |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1216 40, //lna gain * 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1217 40, //lna_th_high |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1218 44 //lna_th_low |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1219 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1220 { //T_RF_AGC_BAND agc_bands[RF_RX_CAL_CHAN_SIZE]; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1221 /*--------------*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1222 /*-- PCS band --*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1223 /*--------------*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1224 { 548, 1}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1225 { 622, 1}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1226 { 680, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1227 { 745, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1228 { 812, 3}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1229 { 860, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1230 { 885, 2}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1231 { 991, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1232 { 992, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1233 {1023, 0}, // |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1234 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1235 { //RX temperature compensation |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1236 { -15 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1237 { -5 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1238 { 6 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1239 { 16 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1240 { 25 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1241 { 35 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1242 { 45 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1243 { 56 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1244 { 66 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1245 { 75 , 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1246 { 100 , 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1247 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1248 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1249 { //TX structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1250 {// pcs1900 T_LEVEL_TX |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1251 { 460, 0, 0 }, // 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1252 { 373, 1, 0 }, // 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1253 { 307, 2, 0 }, // 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1254 { 253, 3, 0 }, // 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1255 { 209, 4, 0 }, // 4 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1256 { 175, 5, 0 }, // 5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1257 { 145, 6, 0 }, // 6 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1258 { 122, 7, 0 }, // 7 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1259 { 99, 8, 0 }, // 8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1260 { 83, 9, 0 }, // 9 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1261 { 70, 10, 0 }, // 10 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1262 { 58, 11, 0 }, // 11 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1263 { 47, 12, 0 }, // 12 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1264 { 38, 13, 0 }, // 13 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1265 { 32, 14, 0 }, // 14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1266 { 25, 15, 0 }, // 15 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1267 { 25, 15, 0 }, // 16 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1268 { 25, 15, 0 }, // 17 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1269 { 25, 15, 0 }, // 18 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1270 { 25, 15, 0 }, // 19 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1271 { 25, 15, 0 }, // 20 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1272 { 25, 15, 0 }, // 21 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1273 { 25, 15, 0 }, // 22 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1274 { 25, 15, 0 }, // 23 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1275 { 25, 15, 0 }, // 24 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1276 { 25, 15, 0 }, // 25 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1277 { 25, 15, 0 }, // 26 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1278 { 25, 15, 0 }, // 27 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1279 { 25, 15, 0 }, // 28 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1280 { 460, 0, 0 }, // 29 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1281 { 460, 0, 0 }, // 30 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1282 { 460, 0, 0 }, // 31 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1283 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1284 {// Channel Calibration Tables |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1285 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1286 { 549, 127 }, // Calibration Table 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1287 { 586, 127 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1288 { 623, 127 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1289 { 697, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1290 { 726, 129 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1291 { 754, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1292 { 782, 129 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1293 { 810, 131 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1294 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1295 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1296 { 549, 128 }, // Calibration Table 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1297 { 586, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1298 { 623, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1299 { 697, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1300 { 726, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1301 { 754, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1302 { 782, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1303 { 810, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1304 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1305 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1306 { 549, 128 }, // Calibration Table 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1307 { 586, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1308 { 623, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1309 { 697, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1310 { 726, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1311 { 754, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1312 { 782, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1313 { 810, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1314 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1315 {// arfcn, tx_chan_cal |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1316 { 549, 128 }, // Calibration Table 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1317 { 586, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1318 { 623, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1319 { 697, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1320 { 726, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1321 { 754, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1322 { 782, 128 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1323 { 810, 128 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1324 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1325 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1326 { // PCS1900 Power Ramp Values |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1327 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1328 {// Ramp-Up #0 profile - Power Level 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1329 0,0,0,0,0,0,0,0,0,9,16,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1330 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1331 {// Ramp-Down #0 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1332 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1333 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1334 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1335 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1336 {// Ramp-Up #1 profile - Power Level 1 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1337 0,0,0,0,0,0,0,0,0,10,15,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1338 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1339 {// Ramp-Down #1 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1340 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1341 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1342 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1343 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1344 {// Ramp-Up #2 profile - Power Level 2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1345 0,0,0,0,0,0,0,0,0,10,15,31,31,31,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1346 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1347 {// Ramp-Down #2 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1348 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1349 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1350 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1351 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1352 {// Ramp-Up #3 profile - Power Level 3 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1353 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1354 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1355 {// Ramp-Down #3 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1356 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1357 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1358 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1359 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1360 {// Ramp-Up #4 profile - Power Level 4 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1361 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1362 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1363 {// Ramp-Down #4 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1364 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1365 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1366 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1367 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1368 {// Ramp-Up #5 profile - Power Level 5 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1369 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1370 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1371 {// Ramp-Down #5 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1372 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1373 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1374 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1375 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1376 {// Ramp-Up #6 profile - Power Level 6 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1377 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1378 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1379 {// Ramp-Down #6 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1380 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1381 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1382 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1383 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1384 {// Ramp-Up #7 profile - Power Level 7 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1385 0 ,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1386 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1387 {// Ramp-Down #7 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1388 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1389 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1390 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1391 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1392 {// Ramp-Up #8 profile - Power Level 8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1393 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1394 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1395 {// Ramp-Down #8 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1396 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1397 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1398 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1399 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1400 {// Ramp-Up #9 profile - Power Level 9 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1401 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1402 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1403 {// Ramp-Down #9 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1404 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1405 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1406 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1407 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1408 {// Ramp-Up #10 profile - Power Level 10 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1409 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1410 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1411 {// Ramp-Down #10 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1412 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1413 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1414 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1415 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1416 {// Ramp-Up #11 profile - Power Level 11 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1417 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1418 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1419 {// Ramp-Down #11 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1420 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1421 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1422 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1423 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1424 {// Ramp-Up #12 profile - Power Level 12 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1425 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1426 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1427 {// Ramp-Down #12 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1428 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1429 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1430 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1431 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1432 {// Ramp-Up #13 profile - Power Level 13 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1433 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1434 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1435 {// Ramp-Down #13 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1436 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1437 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1438 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1439 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1440 {// Ramp-Up #14 profile - Power Level 14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1441 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1442 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1443 {// Ramp-Down #14 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1444 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1445 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1446 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1447 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1448 {// Ramp-Up #15 profile - Power Level 15 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1449 0,0,0,0,0,0,0,0,0,17,18,29,24,30,10,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1450 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1451 {// Ramp-Down #15 profile |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1452 0,10,25,31,31,22,9,0,0,0,0,0,0,0,0,0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1453 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1454 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1455 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1456 { //TX temperature compensation |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1457 #if (ORDER2_TX_TEMP_CAL==1) |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1458 { -11, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1459 { +9, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1460 { +39, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1461 { +59, 0, 0, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1462 { 127, 0, 0, 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1463 #else |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1464 { -11, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1465 { +9, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1466 { +39, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1467 { +59, 0 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1468 { 127, 0 } |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1469 #endif |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1470 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1471 }, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1472 //IQ swap |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1473 SWAP_IQ_PCS |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1474 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1475 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1476 /*------------------------------------------*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1477 /* ABB Initialization words |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1478 /*------------------------------------------*/ |
397
a513e7682ccf
l1_rf10.c: s/ANALOG/ANLG_FAM/
Mychaela Falconia <falcon@freecalypso.org>
parents:
396
diff
changeset
|
1479 #if (ANLG_FAM == 1) |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1480 UWORD16 abb[ABB_TABLE_SIZE] = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1481 { |
398
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1482 C_AFCCTLADD, // Value at reset |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1483 C_VBUCTRL, // Uplink gain amp 0dB, Sidetone gain to mute |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1484 C_VBDCTRL, // Downlink gain amp 0dB, Volume control 0 dB |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1485 C_BBCTRL, // value at reset |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1486 C_APCOFF, // value at reset |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1487 C_BULIOFF, // value at reset |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1488 C_BULQOFF, // value at reset |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1489 C_DAI_ON_OFF, // value at reset |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1490 C_AUXDAC, // value at reset |
398
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1491 C_VBCTRL, // VULSWITCH=0, VDLAUX=1, VDLEAR=1 |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1492 C_APCDEL1 // value at reset |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1493 }; |
397
a513e7682ccf
l1_rf10.c: s/ANALOG/ANLG_FAM/
Mychaela Falconia <falcon@freecalypso.org>
parents:
396
diff
changeset
|
1494 #elif (ANLG_FAM == 2) |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1495 UWORD16 abb[ABB_TABLE_SIZE] = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1496 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1497 C_AFCCTLADD, |
398
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1498 C_VBUCTRL, |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1499 C_VBDCTRL, |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1500 C_BBCTRL, |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1501 C_BULGCAL, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1502 C_APCOFF, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1503 C_BULIOFF, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1504 C_BULQOFF, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1505 C_DAI_ON_OFF, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1506 C_AUXDAC, |
398
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1507 C_VBCTRL1, |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1508 C_VBCTRL2, |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1509 C_APCDEL1, |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1510 C_APCDEL2 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1511 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1512 |
397
a513e7682ccf
l1_rf10.c: s/ANALOG/ANLG_FAM/
Mychaela Falconia <falcon@freecalypso.org>
parents:
396
diff
changeset
|
1513 #elif (ANLG_FAM == 3) |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1514 UWORD16 abb[ABB_TABLE_SIZE] = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1515 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1516 C_AFCCTLADD, |
398
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1517 C_VBUCTRL, |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1518 C_VBDCTRL, |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1519 C_BBCTRL, |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1520 C_BULGCAL, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1521 C_APCOFF, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1522 C_BULIOFF, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1523 C_BULQOFF, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1524 C_DAI_ON_OFF, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1525 C_AUXDAC, |
398
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1526 C_VBCTRL1, |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1527 C_VBCTRL2, |
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1528 C_APCDEL1, |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1529 C_APCDEL2, |
398
91d64e076fb6
l1_rf10.c: ABB init constant renaming between MV100 and TCS211
Mychaela Falconia <falcon@freecalypso.org>
parents:
397
diff
changeset
|
1530 C_VBPOP, |
396
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1531 C_VAUDINITD, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1532 C_VAUDCR, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1533 C_VAUOCR, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1534 C_VAUSCR, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1535 C_VAUDPLL |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1536 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1537 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1538 #endif |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1539 /*------------------------------------------*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1540 /* Gain table */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1541 /* specified in the TRF6053 spec */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1542 /* 2 dB steps - LNA always ON */ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1543 /*------------------------------------------*/ |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1544 UWORD16 AGC_TABLE[AGC_TABLE_SIZE] = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1545 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1546 0x00, //6dB |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1547 0x01, //8dB |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1548 0x02, //10dB |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1549 0x03, //12dB |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1550 0x04, //14 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1551 0x05, //16 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1552 0x06, //18 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1553 0x07, //20 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1554 0x08, //22 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1555 0x09, //24 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1556 0x0a, //26 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1557 0x0b, //28 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1558 0x0c, //30 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1559 0x0d, //32 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1560 0x0e, //34 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1561 0x0f, //36 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1562 0x10, //38 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1563 0x11, //40 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1564 0x12, //42 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1565 0x13, //44 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1566 0x14, //46 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1567 0x15, //48 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1568 0x16, //50 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1569 0x17, //52 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1570 0x18, //54 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1571 0x19, //56 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1572 0x1a //58 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1573 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1574 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1575 // structure for ADC conversion (4 Internal channel + 5 Ext channels max.) |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1576 T_ADC adc; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1577 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1578 // MADC calibration structure |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1579 T_ADCCAL adc_cal= |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1580 { // a: 0,..,8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1581 // b, 0,..,8 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1582 // cal_a = 4*1750 is the Typical value 1.75 V ref voltage , divide by 4 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1583 7000, 8750, 7000, 7000, 7000, 7000, 7000, 256, 7000, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1584 0, 0, 0, 0, 0, 0, 0, 0, 0 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1585 }; |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1586 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1587 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1588 // table which converts ADC value into RF temperature |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1589 T_TEMP temperature[TEMP_TABLE_SIZE] = |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1590 { |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1591 7, -35, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1592 7, -34, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1593 8, -33, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1594 8, -32, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1595 9, -31, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1596 9, -30, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1597 10, -29, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1598 11, -28, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1599 11, -27, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1600 12, -26, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1601 13, -25, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1602 14, -24, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1603 14, -23, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1604 15, -22, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1605 16, -21, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1606 17, -20, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1607 18, -19, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1608 19, -18, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1609 21, -17, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1610 22, -16, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1611 23, -15, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1612 24, -14, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1613 26, -13, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1614 27, -12, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1615 29, -11, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1616 30, -10, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1617 32, -9, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1618 34, -8, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1619 36, -7, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1620 37, -6, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1621 39, -5, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1622 41, -4, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1623 44, -3, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1624 46, -2, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1625 48, -1, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1626 51, 0, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1627 53, 1, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1628 56, 2, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1629 59, 3, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1630 61, 4, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1631 64, 5, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1632 68, 6, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1633 71, 7, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1634 74, 8, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1635 78, 9, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1636 81, 10, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1637 85, 11, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1638 89, 12, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1639 93, 13, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1640 97, 14, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1641 101, 15, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1642 105, 16, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1643 110, 17, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1644 115, 18, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1645 119, 19, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1646 124, 20, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1647 130, 21, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1648 135, 22, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1649 140, 23, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1650 146, 24, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1651 152, 25, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1652 158, 26, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1653 164, 27, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1654 170, 28, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1655 176, 29, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1656 183, 30, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1657 190, 31, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1658 197, 32, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1659 204, 33, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1660 211, 34, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1661 219, 35, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1662 226, 36, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1663 234, 37, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1664 242, 38, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1665 250, 39, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1666 259, 40, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1667 267, 41, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1668 276, 42, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1669 285, 43, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1670 294, 44, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1671 303, 45, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1672 312, 46, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1673 322, 47, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1674 331, 48, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1675 341, 49, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1676 351, 50, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1677 361, 51, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1678 371, 52, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1679 382, 53, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1680 392, 54, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1681 403, 55, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1682 413, 56, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1683 424, 57, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1684 435, 58, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1685 446, 59, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1686 458, 60, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1687 469, 61, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1688 480, 62, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1689 492, 63, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1690 503, 64, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1691 515, 65, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1692 527, 66, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1693 539, 67, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1694 550, 68, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1695 562, 69, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1696 574, 70, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1697 586, 71, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1698 598, 72, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1699 611, 73, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1700 623, 74, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1701 635, 75, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1702 647, 76, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1703 659, 77, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1704 671, 78, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1705 683, 79, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1706 696, 80, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1707 708, 81, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1708 720, 82, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1709 732, 83, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1710 744, 84, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1711 756, 85, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1712 768, 86, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1713 780, 87, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1714 792, 88, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1715 804, 89, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1716 816, 90, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1717 827, 91, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1718 839, 92, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1719 851, 93, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1720 862, 94, |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1721 873, 95 |
525d9f565947
l1_rf10.c: initial import from MV100 source
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1722 }; |