From: Keith Packard Date: Sat, 27 Aug 2011 20:25:23 +0000 (-0700) Subject: altos: add ao_aes/radio_cmac to tidongle, teledongle and telebt X-Git-Tag: 1.0.9.1~33 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=9adf2c9c40ea1da2637ed809dc0d004e47844440;hp=b3c95582774355c991d0a9f27d0a86881e643e62 altos: add ao_aes/radio_cmac to tidongle, teledongle and telebt All of these can do the telelco stuff at this point. Signed-off-by: Keith Packard --- diff --git a/src/product/Makefile.telebt b/src/product/Makefile.telebt index d9ef1ea7..ff0e1502 100644 --- a/src/product/Makefile.telebt +++ b/src/product/Makefile.telebt @@ -32,12 +32,14 @@ CORE_SRC = \ ao_task.c CC1111_SRC = \ + ao_aes.c \ ao_dbg.c \ ao_dma.c \ ao_led.c \ ao_packet.c \ ao_packet_master.c \ ao_radio.c \ + ao_radio_cmac.c \ ao_romconfig.c \ ao_serial.c \ ao_timer.c \ diff --git a/src/product/Makefile.teledongle b/src/product/Makefile.teledongle index cfd9b806..56182b84 100644 --- a/src/product/Makefile.teledongle +++ b/src/product/Makefile.teledongle @@ -34,12 +34,14 @@ CORE_SRC = \ ao_task.c CC1111_SRC = \ + ao_aes.c \ ao_dbg.c \ ao_dma.c \ ao_led.c \ ao_packet.c \ ao_packet_master.c \ ao_radio.c \ + ao_radio_cmac.c \ ao_romconfig.c \ ao_timer.c \ ao_usb.c \ diff --git a/src/product/ao_tidongle.c b/src/product/ao_tidongle.c index 3b7c2733..5adbb05c 100644 --- a/src/product/ao_tidongle.c +++ b/src/product/ao_tidongle.c @@ -34,6 +34,8 @@ main(void) ao_rssi_init(AO_LED_RED); ao_radio_init(); ao_dbg_init(); + ao_aes_init(); + ao_radio_cmac_init(); ao_config_init(); /* Bring up the USB link */ P1DIR |= 1; diff --git a/src/tidongle/Makefile b/src/tidongle/Makefile index 247f4fe0..057e420b 100644 --- a/src/tidongle/Makefile +++ b/src/tidongle/Makefile @@ -29,12 +29,14 @@ CORE_SRC = \ ao_task.c CC1111_SRC = \ + ao_aes.c \ ao_dbg.c \ ao_dma.c \ ao_led.c \ ao_packet.c \ ao_packet_master.c \ ao_radio.c \ + ao_radio_cmac.c \ ao_romconfig.c \ ao_timer.c \ ao_usb.c \