From: Keith Packard Date: Wed, 29 Aug 2012 01:12:27 +0000 (-0700) Subject: altos: Include the radio_cmac debug commands in telefire X-Git-Tag: 1.1~57 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=27a879b4069ccedf8bbe39d7dbecf45000f29d8c altos: Include the radio_cmac debug commands in telefire Just temporary debugging Signed-off-by: Keith Packard --- diff --git a/src/telefire-v0.1/Makefile b/src/telefire-v0.1/Makefile index cfa4b3ed..712b2e8b 100644 --- a/src/telefire-v0.1/Makefile +++ b/src/telefire-v0.1/Makefile @@ -52,7 +52,8 @@ CC1111_SRC = \ DRIVER_SRC = \ ao_pca9922.c \ ao_74hc497.c \ - ao_pad.c + ao_pad.c \ + ao_radio_cmac_cmd.c PRODUCT_SRC = \ ao_telefire.c diff --git a/src/telefire-v0.1/ao_telefire.c b/src/telefire-v0.1/ao_telefire.c index 210be08b..cc0f668f 100644 --- a/src/telefire-v0.1/ao_telefire.c +++ b/src/telefire-v0.1/ao_telefire.c @@ -18,6 +18,7 @@ #include #include #include +#include void main(void) @@ -37,6 +38,7 @@ main(void) ao_radio_init(); ao_aes_init(); ao_pad_init(); +// ao_radio_cmac_cmd_init(); ao_config_init(); ao_start_scheduler(); }