From 43c8f7012102cdb591ace899420c10e4a78385ad Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 20 Apr 2009 23:33:41 -0700 Subject: 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. --- ao_task.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ao_task.c') diff --git a/ao_task.c b/ao_task.c index 043b3df2..878724c5 100644 --- a/ao_task.c +++ b/ao_task.c @@ -169,16 +169,16 @@ ao_yield(void) _naked _endasm; } -int +void ao_sleep(__xdata void *wchan) { __critical { - ao_cur_task->wchan = wchan; + ao_cur_task->wchan = wchan; } ao_yield(); } -int +void ao_wakeup(__xdata void *wchan) { uint8_t i; -- cgit v1.2.3