diff options
author | Keith Packard <keithp@keithp.com> | 2011-08-26 15:02:43 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-26 20:56:25 -0700 |
commit | c32893ce79835a8f861d6ef414644c2ff9769ff6 (patch) | |
tree | a6fd36123685f6880d35612782ddff2ed2d9b18c /src/core/ao_panic.c | |
parent | 8125acc030574afed6f23aa8aa302d9c768bb04e (diff) |
altos: Integrate telescience support
Adds a few drivers including an LCD driver
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_panic.c')
-rw-r--r-- | src/core/ao_panic.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/ao_panic.c b/src/core/ao_panic.c index 0668dad2..b6ff65cc 100644 --- a/src/core/ao_panic.c +++ b/src/core/ao_panic.c @@ -24,6 +24,10 @@ #if !HAS_BEEP #define ao_beep(x) #endif +#if !LEDS_AVAILABLE +#define ao_led_on(x) +#define ao_led_off(x) +#endif static void ao_panic_delay(uint8_t n) |