2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
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.
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.
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.
20 volatile __xdata struct ao_data ao_data_ring[AO_DATA_RING];
21 volatile __data uint8_t ao_data_head;
27 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 2;
29 # ifdef TELENANO_V_0_1
30 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 1;
32 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 0;
38 ao_data_get(__xdata struct ao_data *packet)
41 uint8_t i = ao_data_ring_prev(ao_sample_data);
43 uint8_t i = ao_data_ring_prev(ao_data_head);
45 ao_xmemcpy(packet, (void __xdata *) &ao_data_ring[i], sizeof (struct ao_data));
49 ao_adc_isr(void) __interrupt 1
54 sequence = (ADCCON2 & ADCCON2_SCH_MASK) >> ADCCON2_SCH_SHIFT;
55 #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
56 /* TeleMetrum readings */
59 a = (uint8_t __xdata *) (&ao_data_ring[ao_data_head].adc.accel_ref);
64 if (sequence == ADCCON3_ECH_TEMP)
66 a = (uint8_t __xdata *) (&ao_data_ring[ao_data_head].adc.accel + sequence);
73 #if HAS_EXTERNAL_TEMP == 0
74 /* start next channel conversion */
75 /* v0.2 replaces external temp sensor with internal one */
77 ADCCON3 = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
80 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | sequence;
84 #if TELEMINI_V_1_0 || TELENANO_V_0_1
85 /* TeleMini readings */
86 a = (uint8_t __xdata *) (&ao_data_ring[ao_data_head].adc.pres);
92 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 1;
97 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 2;
102 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 3;
107 sequence = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
109 case ADCCON3_ECH_TEMP:
116 #ifdef TELENANO_V_0_1
121 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 3;
126 sequence = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
128 case ADCCON3_ECH_TEMP:
138 /* Start next conversion */
141 #endif /* telemini || telenano */
143 #ifdef TELEFIRE_V_0_1
144 a = (uint8_t __xdata *) (&ao_data_ring[ao_data_head].adc.sense[0] + sequence);
148 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | (sequence + 1);
150 #endif /* TELEFIRE_V_0_1 */
153 #error No known ADC configuration set
157 /* record this conversion series */
158 ao_data_ring[ao_data_head].tick = ao_time();
159 ao_data_head = ao_data_ring_next(ao_data_head);
160 ao_wakeup(DATA_TO_XDATA(&ao_data_head));
165 ao_adc_dump(void) __reentrant
167 static __xdata struct ao_data packet;
168 ao_data_get(&packet);
170 printf("tick: %5u accel: %5d pres: %5d temp: %5d batt: %5d drogue: %5d main: %5d\n",
171 packet.tick, packet.adc.accel, packet.adc.pres, packet.adc.temp,
172 packet.adc.v_batt, packet.adc.sense_d, packet.adc.sense_m);
174 AO_ADC_DUMP(&packet);
178 __code struct ao_cmds ao_adc_cmds[] = {
179 { ao_adc_dump, "a\0Current ADC" },
187 ADCCFG = AO_ADC_PINS;
192 /* TeleMetrum configuration */
193 ADCCFG = ((1 << 0) | /* acceleration */
194 (1 << 1) | /* pressure */
195 #if HAS_EXTERNAL_TEMP
196 (1 << 2) | /* v0.1 temperature */
198 (1 << 3) | /* battery voltage */
199 (1 << 4) | /* drogue sense */
200 (1 << 5)); /* main sense */
204 /* TeleMini configuration */
205 ADCCFG = ((1 << 0) | /* pressure */
206 (1 << 1) | /* drogue sense */
207 (1 << 2) | /* main sense */
208 (1 << 3)); /* battery voltage */
211 #endif /* else AO_ADC_PINS */
213 /* enable interrupts */
216 ao_cmd_register(&ao_adc_cmds[0]);