annotate doc/Compal-calibration @ 303:7de38a7e1fa5

c1xx-calextr: Rx calchan conversion implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 20 Nov 2017 06:10:54 +0000
parents e05563f0dfcf
children 9c1444923495
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
300
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 Reading factory RF calibration values out of Mot C1xx phones
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 ============================================================
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 Motorola C1xx phones are based on the Calypso+Iota+Rita chipset from TI and
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 their firmware is also loosely based on TI's reference, but Compal (Motorola's
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 ODM and the maker of these phones) have made lots and lots of changes moving
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 away from TI's canonical way of doing things. When it comes to RF calibration,
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 Mot/Compal have performed it on each individual unit on their factory production
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 line just like all other GSM phone and modem manufacturers, but instead of
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 storing the results of this calibration in TI's flash file system, Mot/Compal
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 have put these calibration values into a completely different flash data
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 structure of their own invention.
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 We don't know the proper name for Mot/Compal's flash data structure that has no
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 counterpart in TI's canonical solution, but we know its location in the flash:
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 * On C1xx phones with 2 MiB flash (most C11x/12x variants), it is the 8 KiB
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 flash sector at 0x1FC000;
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 * On C139/140 phones and the rare C11x/12x variants with 4 MiB flash, it is the
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 8 KiB flash sector at 0x3FC000;
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 * On C155/156 phones with 8 MiB flash, the data structure in question is
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24 contained in the first 8 KiB of the 64 KiB physical flash sector at 0x7E0000.
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26 The flash sector in question contains record-structured data; we don't know the
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
27 meaning of most of these records, but we have been able to find the RF
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
28 calibration records among them and locate the actual calibration values of
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
29 interest inside those records.
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
30
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
31 In order to extract the RF calibration values from your C1xx phone for use with
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
32 FreeCalypso, you will need a dump of your phone's flash, or at least a dump of
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
33 the specific 8 KiB sector at the model-dependent offset given above. As a
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
34 specific example, if your phone is a C139/140 or a C11x/12x variant with 4 MiB
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35 flash and you have a complete dump of that flash, execute a command like the
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 following:
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 c1xx-calextr -b rfbin flashdump.bin 0x3FC000
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
39
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40 The c1xx-calextr utility locates the RF calibration records in the flash dump
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
41 binary, extracts the specific calibration values of primary importance (Rx
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42 "magic gain" and Tx APC DAC values), and converts them to TI's canonical format
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 for use with FreeCalypso firmware. The numeric argument after the flash image
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
44 filename is the offset within that image file where the magic sector should be
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
45 sought, and the -b option directs the tool to save the converted RF calibration
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
46 tables in binary format (the alternative is -a for ASCII format) in the
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 directory named after the option, named rfbin in this example.
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 If you use the binary output option as recommended here, the resulting output
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
50 directory will have two subdirectories in it, named rx and tx. The rx
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
51 subdirectory will have two files named agcparams.BAND where BAND is 900 and 1800
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52 for EU-band phones or 850 and 1900 for US-band ones, and the tx subdirectory
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
53 will have two files named levels.BAND. This directory structure and these
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
54 names for the binary files correspond directly to the /gsm/rf directory subtree
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
55 in the flash file system (FFS) of TI's canonical solution, hence once the C1xx
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
56 phone in question is converted to FreeCalypso (i.e., runs FreeCalypso fw with
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
57 an aftermarket FFS created for it), you can upload the extracted and converted
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
58 RF calibration values into it like this:
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
59
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
60 fc-fsio upload-subtree rfbin /gsm/rf
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
61
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
62 Limitations
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
63 ===========
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
64
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
65 In the traditional RF calibration procedure performed by most GSM phone and
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
66 modem manufacturers including Motorola, the Rx "magic gain" and the Tx APC DAC
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
67 values (Tx power levels) are calibrated for the center frequency of each band
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
68 at first, and then additional measurements are performed at other frequencies
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
69 within the band to arrive at channel-dependent corrections for both Rx and Tx.
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
70 On devices that follow TI's canonical way of doing things, you can find these
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
71 channel correction tables in /gsm/rf/rx/calchan.* and /gsm/rf/tx/calchan.*
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
72 files in the FFS.
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
73
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
74 However, in the case of C1xx phones, Mot/Compal have changed the way in which
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
75 they do these channel corrections (both Rx and Tx) from TI's canon, and the
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
76 channel correction values stored in their factory calibration records do not
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
77 naturally translate to TI's Rx calchan and Tx calchan tables.
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
78
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
79 In the case of Rx calibration, Mot/Compal have calibrated the channel
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
80 corrections with much finer granularity than is called for in TI's canonical
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
81 version. In TI's canon each band is divided into up to 10 subbands for the
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
82 purpose of Rx channel compensation, but Mot/Compal used much narrower subbands
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
83 of only 6 ARFCNs each, resulting in 21 subbands in the narrowest GSM850 band
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
84 and 63 subbands in the widest DCS (1800 MHz) band. We can see where the
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
85 channel correction values for each of these tiny subbands are stored, but
0cfb2e3aeda4 started documenting c1xx-calextr
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
86 making use of them in FreeCalypso is not easy.
302
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
87
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
88 850 MHz band:
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
89
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
90 128-134
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
91 135-140
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
92
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
93 141-146
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
94 147-152
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
95
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
96 153-158
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
97 159-164
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
98
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
99 165-170
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
100 171-176
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
101
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
102 177-182
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
103 183-188
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
104
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
105 189-194
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
106 195-200
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
107
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
108 201-206
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
109 207-212
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
110
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
111 213-218
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
112 219-224
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
113
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
114 225-230
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
115 231-236
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
116
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
117 237-242
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
118 243-248
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
119 249-251
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
120
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
121 900 MHz band:
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
122
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
123 0-6
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
124 7-12
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
125 13-18
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
126
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
127 19-24
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
128 25-30
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
129 31-36
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
130
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
131 37-42
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
132 43-48
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
133 49-54
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
134
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
135 55-60
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
136 61-66
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
137 67-72
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
138
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
139 73-78
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
140 79-84
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
141 85-90
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
142
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
143 91-96
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
144 97-102
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
145 103-108
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
146
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
147 109-114
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
148 115-120
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
149 121-124
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
150
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
151 975-975
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
152 976-981
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
153 982-987
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
154
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
155 988-993
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
156 994-999
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
157 1000-1005
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
158
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
159 1006-1011
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
160 1012-1017
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
161 1018-1023
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
162
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
163 1800 MHz band:
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
164
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
165 512-518
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
166 519-524
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
167 525-530
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
168 531-536
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
169 537-542
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
170 543-548
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
171
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
172 549-554
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
173 555-560
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
174 561-566
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
175 567-572
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
176 573-578
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
177 579-584
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
178
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
179 585-590
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
180 591-596
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
181 597-602
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
182 603-608
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
183 609-614
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
184 615-620
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
185
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
186 621-626
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
187 627-632
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
188 633-638
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
189 639-644
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
190 645-650
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
191 651-656
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
192
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
193 657-662
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
194 663-668
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
195 669-674
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
196 675-680
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
197 681-686
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
198 687-692
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
199
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
200 693-698
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
201 699-704
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
202 705-710
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
203 711-716
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
204 717-722
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
205 723-728
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
206
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
207 729-734
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
208 735-740
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
209 741-746
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
210 747-752
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
211 753-758
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
212 759-764
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
213
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
214 765-770
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
215 771-776
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
216 777-782
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
217 783-788
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
218 789-794
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
219 795-800
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
220 801-806
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
221
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
222 807-812
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
223 813-818
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
224 819-824
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
225 825-830
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
226 831-836
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
227 837-842
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
228 843-848
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
229
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
230 849-854
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
231 855-860
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
232 861-866
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
233 867-872
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
234 873-878
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
235 879-884
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
236 885-885
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
237
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
238 1900 MHz band:
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
239
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
240 512-518
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
241 519-524
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
242 525-530
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
243 531-536
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
244 537-542
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
245
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
246 543-548
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
247 549-554
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
248 555-560
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
249 561-566
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
250 567-572
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
251
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
252 573-578
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
253 579-584
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
254 585-590
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
255 591-596
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
256 597-602
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
257
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
258 603-608
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
259 609-614
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
260 615-620
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
261 621-626
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
262 627-632
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
263
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
264 633-638
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
265 639-644
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
266 645-650
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
267 651-656
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
268 657-662
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
269
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
270 663-668
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
271 669-674
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
272 675-680
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
273 681-686
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
274 687-692
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
275
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
276 693-698
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
277 699-704
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
278 705-710
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
279 711-716
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
280 717-722
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
281
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
282 723-728
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
283 729-734
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
284 735-740
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
285 741-746
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
286 749-752
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
287
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
288 753-758
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
289 759-764
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
290 765-770
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
291 771-776
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
292 777-782
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
293
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
294 783-788
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
295 789-794
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
296 795-800
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
297 801-806
e05563f0dfcf doc/Compal-calibration: Rx calchan ranges documented
Mychaela Falconia <falcon@freecalypso.org>
parents: 300
diff changeset
298 807-810