X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=src%2Fcc1111%2Fao_arch.h;h=001165fafd9bae0b592a4be9f1da975ce8f6e9eb;hp=8a41791fea326d58c3421d1688c325ef5a9d6d7a;hb=b132eefc5f63412bb4a98a4bb72b9055e40d5d42;hpb=1c344b760776cd5d8c0297d8db9bf02687381b4e diff --git a/src/cc1111/ao_arch.h b/src/cc1111/ao_arch.h index 8a41791f..001165fa 100644 --- a/src/cc1111/ao_arch.h +++ b/src/cc1111/ao_arch.h @@ -27,6 +27,12 @@ /* Convert a __data pointer into an __xdata pointer */ #define DATA_TO_XDATA(a) ((void __xdata *) ((uint8_t) (a) | 0xff00)) +/* Code and xdata use the same address space */ +#define CODE_TO_XDATA(a) ((__xdata void *) ((uint16_t) (a))) + +/* Pdata lives at the start of xdata */ +#define PDATA_TO_XDATA(a) ((void __xdata *) ((uint8_t) (a) | 0xf000)) + /* Stack runs from above the allocated __data space to 0xfe, which avoids * writing to 0xff as that triggers the stack overflow indicator */ @@ -204,4 +210,42 @@ struct ao_adc { #define AO_ADC_RING 32 +/* ao_button.c */ +#ifdef HAS_BUTTON +void +ao_p0_isr(void) ao_arch_interrupt(13); + +void +ao_p1_isr(void) ao_arch_interrupt(15); + +void +ao_p2_isr(void); + +#define HAS_P2_ISR 1 + +#endif + +void +ao_button_init(void); + +char +ao_button_get(void) __critical; + +/* ao_string.c */ + +void +_ao_xmemcpy(__xdata void *dst, __xdata void *src, uint8_t count); + +#define ao_xmemcpy(d,s,c) _ao_xmemcpy(d,s,c) + +void +_ao_xmemset(__xdata void *dst, uint8_t value, uint8_t count); + +#define ao_xmemset(d,v,c) _ao_xmemset(d,v,c) + +int8_t +_ao_xmemcmp(__xdata void *a, __xdata void *b, uint8_t count); + +#define ao_xmemcmp(d,s,c) _ao_xmemcmp((d), (s), (c)) + #endif /* _AO_ARCH_H_ */