summaryrefslogtreecommitdiff
path: root/ao_panic.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-04-20 23:33:41 -0700
committerKeith Packard <keithp@keithp.com>2009-04-20 23:33:41 -0700
commit43c8f7012102cdb591ace899420c10e4a78385ad (patch)
tree6ce45d0a58b1133961acd3cda3f3be21fef085b4 /ao_panic.c
parent5be13b76a2e29b84cd6d1eec065e3354b0dafce5 (diff)
Add radio support. Build separate executables for TeleMetrum and the TI dongle
Ok, way too big a patch, but things were in rough shape. This patch adds support for the radio, both transmit and receive. Then, because I could no longer run the TeleMetrum code on the TI dongle, I ended up building a separate image for the TI board, which involved creating a mechanism for having multiple command sets and splitting code for different functions into different files.
Diffstat (limited to 'ao_panic.c')
-rw-r--r--ao_panic.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ao_panic.c b/ao_panic.c
index ec960f01..f6ecc380 100644
--- a/ao_panic.c
+++ b/ao_panic.c
@@ -34,6 +34,7 @@ ao_panic(uint8_t reason)
uint8_t n;
__critical for (;;) {
+ ao_panic_delay(20);
for (n = 0; n < 5; n++) {
ao_led_on(AO_LED_RED);
ao_beep(AO_BEEP_HIGH);
@@ -44,6 +45,7 @@ ao_panic(uint8_t reason)
}
ao_beep(AO_BEEP_OFF);
ao_panic_delay(2);
+#pragma disable_warning 126
for (n = 0; n < reason; n++) {
ao_led_on(AO_LED_RED);
ao_beep(AO_BEEP_MID);
@@ -52,6 +54,5 @@ ao_panic(uint8_t reason)
ao_beep(AO_BEEP_OFF);
ao_panic_delay(10);
}
- ao_panic_delay(20);
}
}