diff options
| author | Keith Packard <keithp@keithp.com> | 2012-04-06 18:07:07 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2012-04-06 18:07:07 -0700 | 
| commit | 9b12bc445fe482306e4587ad60c6d2daf65a60f3 (patch) | |
| tree | 5648964eb433e7111c751a232619251f90d77820 /src/core/ao.h | |
| parent | 2a04ac8dff1bfc3efba8c7e4dc9c1a827496dbdf (diff) | |
altos: Add DMA, SPI and MS5607 drivers
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao.h')
| -rw-r--r-- | src/core/ao.h | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/src/core/ao.h b/src/core/ao.h index 080cadb2..67efa437 100644 --- a/src/core/ao.h +++ b/src/core/ao.h @@ -114,6 +114,7 @@ ao_start_scheduler(void);  #define AO_PANIC_USB		10	/* Trying to send USB packet while busy */  #define AO_PANIC_BT		11	/* Communications with bluetooth device failed */  #define AO_PANIC_STACK		12	/* Stack overflow */ +#define AO_PANIC_SPI		13	/* SPI communication failure */  /* Stop the operating system, beeping and blinking the reason */  void @@ -1895,4 +1896,10 @@ int32_t ao_freq_to_set(int32_t freq, int32_t cal);  #include <ao_arch_funcs.h> +/* + * ao_ms5607.c + */ + +void ao_ms5607_init(void); +  #endif /* _AO_H_ */ | 
