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.
21 volatile __xdata struct ao_adc ao_adc_ring[AO_ADC_RING];
23 volatile __xdata uint16_t ao_accel_ref[AO_ADC_RING];
25 volatile __data uint8_t ao_adc_head;
31 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 2;
33 # ifdef TELENANO_V_0_1
34 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 1;
36 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 0;
42 ao_adc_get(__xdata struct ao_adc *packet)
45 uint8_t i = ao_adc_ring_prev(ao_sample_adc);
47 uint8_t i = ao_adc_ring_prev(ao_adc_head);
49 ao_xmemcpy(packet, &ao_adc_ring[i], sizeof (struct ao_adc));
53 ao_adc_isr(void) __interrupt 1
58 sequence = (ADCCON2 & ADCCON2_SCH_MASK) >> ADCCON2_SCH_SHIFT;
60 /* TeleMetrum readings */
63 a = (uint8_t __xdata *) (&ao_accel_ref[ao_adc_head]);
68 if (sequence == ADCCON3_ECH_TEMP)
70 a = (uint8_t __xdata *) (&ao_adc_ring[ao_adc_head].accel + sequence);
77 #if HAS_EXTERNAL_TEMP == 0
78 /* start next channel conversion */
79 /* v0.2 replaces external temp sensor with internal one */
81 ADCCON3 = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
84 ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | sequence;
89 /* TeleMini readings */
90 a = (uint8_t __xdata *) (&ao_adc_ring[ao_adc_head].pres);
96 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 1;
101 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 2;
106 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 3;
111 sequence = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
113 case ADCCON3_ECH_TEMP:
120 #ifdef TELENANO_V_0_1
125 sequence = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | 3;
130 sequence = ADCCON3_EREF_1_25 | ADCCON3_EDIV_512 | ADCCON3_ECH_TEMP;
132 case ADCCON3_ECH_TEMP:
142 /* Start next conversion */
147 #error No known ADC configuration set
151 /* record this conversion series */
152 ao_adc_ring[ao_adc_head].tick = ao_time();
153 ao_adc_head = ao_adc_ring_next(ao_adc_head);
154 ao_wakeup(DATA_TO_XDATA(&ao_adc_head));
159 ao_adc_dump(void) __reentrant
161 static __xdata struct ao_adc packet;
163 printf("tick: %5u accel: %5d pres: %5d temp: %5d batt: %5d drogue: %5d main: %5d\n",
164 packet.tick, packet.accel, packet.pres, packet.temp,
165 packet.v_batt, packet.sense_d, packet.sense_m);
168 __code struct ao_cmds ao_adc_cmds[] = {
169 { ao_adc_dump, "a\0Current ADC" },
177 /* TeleMetrum configuration */
178 ADCCFG = ((1 << 0) | /* acceleration */
179 (1 << 1) | /* pressure */
180 #if HAS_EXTERNAL_TEMP
181 (1 << 2) | /* v0.1 temperature */
183 (1 << 3) | /* battery voltage */
184 (1 << 4) | /* drogue sense */
185 (1 << 5)); /* main sense */
189 /* TeleMini configuration */
190 ADCCFG = ((1 << 0) | /* pressure */
191 (1 << 1) | /* drogue sense */
192 (1 << 2) | /* main sense */
193 (1 << 3)); /* battery voltage */
196 /* enable interrupts */
199 ao_cmd_register(&ao_adc_cmds[0]);