Merge branch 'micropeak-1.1'
[fw/altos] / src / cc1111 / ao_adc.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "ao.h"
19
20 volatile __xdata struct ao_data ao_data_ring[AO_DATA_RING];
21 volatile __data uint8_t         ao_data_head;
22
23 #ifndef AO_ADC_FIRST_PIN
24 #define AO_ADC_FIRST_PIN        0
25 #endif
26
27 void
28 ao_adc_poll(void)
29 {
30 #if HAS_ACCEL_REF
31         ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 2;
32 #else
33 # ifdef TELENANO_V_0_1
34         ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 1;
35 # else
36         ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | AO_ADC_FIRST_PIN;
37 # endif
38 #endif
39 }
40
41 void
42 ao_data_get(__xdata struct ao_data *packet)
43 {
44 #if HAS_FLIGHT
45         uint8_t i = ao_data_ring_prev(ao_sample_data);
46 #else
47         uint8_t i = ao_data_ring_prev(ao_data_head);
48 #endif
49         ao_xmemcpy(packet, (void __xdata *) &ao_data_ring[i], sizeof (struct ao_data));
50 }
51
52 void
53 ao_adc_isr(void) __interrupt 1
54 {
55         uint8_t sequence;
56         uint8_t __xdata *a;
57
58         sequence = (ADCCON2 & ADCCON2_SCH_MASK) >> ADCCON2_SCH_SHIFT;
59 #if TELEMETRUM_V_0_1 || TELEMETRUM_V_0_2 || TELEMETRUM_V_1_0 || TELEMETRUM_V_1_1 || TELEMETRUM_V_1_2 || TELELAUNCH_V_0_1 || TELEBALLOON_V_1_1
60         /* TeleMetrum readings */
61 #if HAS_ACCEL_REF
62         if (sequence == 2) {
63                 a = (uint8_t __xdata *) (&ao_data_ring[ao_data_head].adc.accel_ref);
64                 sequence = 0;
65         } else
66 #endif
67         {
68                 if (sequence == ADCCON3_ECH_TEMP)
69                         sequence = 2;
70                 a = (uint8_t __xdata *) (&ao_data_ring[ao_data_head].adc.accel + sequence);
71                 sequence++;
72         }
73 #define GOT_ADC
74         a[0] = ADCL;
75         a[1] = ADCH;
76         if (sequence < 6) {
77 #if HAS_EXTERNAL_TEMP == 0
78                 /* start next channel conversion */
79                 /* v0.2 replaces external temp sensor with internal one */
80                 if (sequence == 2)
81                         ADCCON3 = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
82                 else
83 #endif
84                         ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | sequence;
85         }
86 #endif
87
88 #if TELEMINI_V_1_0 || TELENANO_V_0_1
89         /* TeleMini readings */
90         a = (uint8_t __xdata *) (&ao_data_ring[ao_data_head].adc.pres);
91 #if TELEMINI_V_1_0
92         switch (sequence) {
93         case 0:
94                 /* pressure */
95                 a += 0;
96                 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 1;
97                 break;
98         case 1:
99                 /* drogue sense */
100                 a += 6;
101                 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 2;
102                 break;
103         case 2:
104                 /* main sense */
105                 a += 8;
106                 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 3;
107                 break;
108         case 3:
109                 /* battery */
110                 a += 4;
111                 sequence = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
112                 break;
113         case ADCCON3_ECH_TEMP:
114                 a += 2;
115                 sequence = 0;
116                 break;
117         }
118 #define GOT_ADC
119 #endif
120 #ifdef TELENANO_V_0_1
121         switch (sequence) {
122         case 1:
123                 /* pressure */
124                 a += 0;
125                 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 3;
126                 break;
127         case 3:
128                 /* battery */
129                 a += 4;
130                 sequence = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
131                 break;
132         case ADCCON3_ECH_TEMP:
133                 a += 2;
134                 sequence = 0;
135                 break;
136         }
137 #define GOT_ADC
138 #endif
139         a[0] = ADCL;
140         a[1] = ADCH;
141         if (sequence) {
142                 /* Start next conversion */
143                 ADCCON3 = sequence;
144         }
145 #endif /* telemini || telenano */
146
147 #ifdef TELEFIRE_V_0_1
148         a = (uint8_t __xdata *) (&ao_data_ring[ao_data_head].adc.sense[0] + sequence - AO_ADC_FIRST_PIN);
149         a[0] = ADCL;
150         a[1] = ADCH;
151         if (sequence < 5)
152                 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | (sequence + 1);
153 #define GOT_ADC
154 #endif /* TELEFIRE_V_0_1 */
155
156 #ifndef GOT_ADC
157 #error No known ADC configuration set
158 #endif
159
160         else {
161                 /* record this conversion series */
162                 ao_data_ring[ao_data_head].tick = ao_time();
163                 ao_data_head = ao_data_ring_next(ao_data_head);
164                 ao_wakeup(DATA_TO_XDATA(&ao_data_head));
165         }
166 }
167
168 static void
169 ao_adc_dump(void) __reentrant
170 {
171         static __xdata struct ao_data   packet;
172         ao_data_get(&packet);
173 #ifndef AO_ADC_DUMP
174         printf("tick: %5u accel: %5d pres: %5d temp: %5d batt: %5d drogue: %5d main: %5d\n",
175                packet.tick, packet.adc.accel, packet.adc.pres, packet.adc.temp,
176                packet.adc.v_batt, packet.adc.sense_d, packet.adc.sense_m);
177 #else
178         AO_ADC_DUMP(&packet);
179 #endif
180 }
181
182 __code struct ao_cmds ao_adc_cmds[] = {
183         { ao_adc_dump,  "a\0Current ADC" },
184         { 0, NULL },
185 };
186
187 void
188 ao_adc_init(void)
189 {
190 #ifdef AO_ADC_PINS
191         ADCCFG = AO_ADC_PINS;
192
193 #else
194
195 #if IGNITE_ON_P2
196         /* TeleMetrum configuration */
197         ADCCFG = ((1 << 0) |    /* acceleration */
198                   (1 << 1) |    /* pressure */
199 #if HAS_EXTERNAL_TEMP
200                   (1 << 2) |    /* v0.1 temperature */
201 #endif
202                   (1 << 3) |    /* battery voltage */
203                   (1 << 4) |    /* drogue sense */
204                   (1 << 5));    /* main sense */
205 #endif
206
207 #if IGNITE_ON_P0
208         /* TeleMini configuration */
209         ADCCFG = ((1 << 0) |    /* pressure */
210                   (1 << 1) |    /* drogue sense */
211                   (1 << 2) |    /* main sense */
212                   (1 << 3));    /* battery voltage */
213 #endif
214
215 #endif /* else AO_ADC_PINS */
216
217         /* enable interrupts */
218         ADCIF = 0;
219         IEN0 |= IEN0_ADCIE;
220         ao_cmd_register(&ao_adc_cmds[0]);
221 }