X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Flpc%2Fao_arch.h;h=5fbb8dfaa0f24183341d1d78dbbc49e80cdf16b3;hb=1b0f56ddb2b85b68232c22a7a8b8744cb9ad76f9;hp=f605e3d2d677ddc4ed4b5ada58e46ecb88a0d4b9;hpb=fd5567882b732f8947b44b217552077c82a3d28e;p=fw%2Faltos diff --git a/src/lpc/ao_arch.h b/src/lpc/ao_arch.h index f605e3d2..5fbb8dfa 100644 --- a/src/lpc/ao_arch.h +++ b/src/lpc/ao_arch.h @@ -24,12 +24,14 @@ * LPC11U14 definitions and code fragments for AltOS */ -#define AO_STACK_SIZE 320 - -#define AO_LED_TYPE uint16_t +#ifndef AO_STACK_SIZE +#define AO_STACK_SIZE 512 +#endif #define AO_PORT_TYPE uint32_t +#define AO_LED_TYPE AO_PORT_TYPE + #ifndef AO_TICK_TYPE #define AO_TICK_TYPE uint16_t #define AO_TICK_SIGNED int16_t @@ -137,4 +139,13 @@ ao_serial_init(void); #define AO_SPI_SPEED_FAST AO_SPI_SPEED_12MHz +#define AO_BOOT_APPLICATION_BASE ((uint32_t *) 0x00001000) +#define AO_BOOT_APPLICATION_BOUND ((uint32_t *) (0x00000000 + 32 * 1024)) +#define AO_BOOT_LOADER_BASE ((uint32_t *) 0x00000000) +#define HAS_BOOT_LOADER 1 + +/* ADC definitions */ + +#define AO_ADC_MAX 32767 + #endif /* _AO_ARCH_H_ */