diff options
author | Keith Packard <keithp@keithp.com> | 2009-04-20 23:33:41 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-04-20 23:33:41 -0700 |
commit | 43c8f7012102cdb591ace899420c10e4a78385ad (patch) | |
tree | 6ce45d0a58b1133961acd3cda3f3be21fef085b4 /ao_report.c | |
parent | 5be13b76a2e29b84cd6d1eec065e3354b0dafce5 (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_report.c')
-rw-r--r-- | ao_report.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ao_report.c b/ao_report.c index cee2bf3a..b26f6713 100644 --- a/ao_report.c +++ b/ao_report.c @@ -58,12 +58,6 @@ ao_report_beep(void) } void -ao_report_notify(void) -{ - ao_wakeup(&ao_report_state); -} - -void ao_report(void) { ao_report_state = ao_flight_state; @@ -71,7 +65,7 @@ ao_report(void) ao_report_beep(); __critical { while (ao_report_state == ao_flight_state) - ao_sleep(&ao_report_state); + ao_sleep(DATA_TO_XDATA(&ao_flight_state)); ao_report_state = ao_flight_state; } } |