X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=ao.h;h=fdf6b027bd46e57ff257d758574a550c42c188e1;hp=2d434134b8ea4f6f01c63a2a2179daac127e3d99;hb=e14f07bfdb8824fc7ed6df1129c66ee39ffd6d54;hpb=823f4f92de0c1f8dd7a644a8e56ffe9822bee6e2 diff --git a/ao.h b/ao.h index 2d434134..fdf6b027 100644 --- a/ao.h +++ b/ao.h @@ -20,11 +20,12 @@ #include #include +#include #include "cc1111.h" #define DATA_TO_XDATA(a) ((void __xdata *) ((uint8_t) (a) | 0xff00)) -#define AO_STACK_START 0x21 +#define AO_STACK_START 0x27 #define AO_STACK_END 0xfe #define AO_STACK_SIZE (AO_STACK_END - AO_STACK_START + 1) @@ -58,4 +59,26 @@ void ao_timer_init(void); uint16_t ao_time_atomic(void); void ao_delay(uint16_t ticks); +/* ao_adc.c */ + +#define ADC_RING 32 + +struct ao_adc { + uint16_t tick; + int16_t accel; + int16_t pres; + int16_t temp; + int16_t v_batt; + int16_t sense_d; + int16_t sense_m; +}; + +extern __xdata struct ao_adc ao_adc_ring[ADC_RING]; +extern __data uint8_t ao_adc_head; + +void ao_adc_isr(void) interrupt 1; +void ao_adc_init(void); +void ao_adc_poll(void); +void ao_adc_get(__xdata struct ao_adc *packet); + #endif /* _AO_H_ */