summaryrefslogtreecommitdiff
path: root/src/product
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-06-04 20:49:15 -0700
committerKeith Packard <keithp@keithp.com>2012-06-04 20:49:15 -0700
commitf1b14932149153a096961fff94191778f88581d9 (patch)
tree4acf3d79f0cfaff948a3028a75f5a8c045ea4f88 /src/product
parent718a8affe1df98eacfd707b5c8c34f9456dcff14 (diff)
altos: Remove unused AES code from teledongle and tidongle
Leave this out as neither of these products need it. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/product')
-rw-r--r--src/product/Makefile.telebt4
-rw-r--r--src/product/Makefile.teledongle4
-rw-r--r--src/product/ao_teledongle.c2
-rw-r--r--src/product/ao_tidongle.c2
4 files changed, 4 insertions, 8 deletions
diff --git a/src/product/Makefile.telebt b/src/product/Makefile.telebt
index e53aa2c4..90525d63 100644
--- a/src/product/Makefile.telebt
+++ b/src/product/Makefile.telebt
@@ -15,6 +15,8 @@ endif
INC = \
ao.h \
ao_pins.h \
+ ao_arch.h \
+ ao_arch_funcs.h \
cc1111.h \
ao_product.h \
$(TELEBT_INC)
@@ -32,14 +34,12 @@ CORE_SRC = \
ao_freq.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_string.c \
diff --git a/src/product/Makefile.teledongle b/src/product/Makefile.teledongle
index 27e7d24b..fbf14a04 100644
--- a/src/product/Makefile.teledongle
+++ b/src/product/Makefile.teledongle
@@ -18,6 +18,8 @@ endif
INC = \
ao.h \
ao_pins.h \
+ ao_arch.h \
+ ao_arch_funcs.h \
cc1111.h \
ao_product.h
@@ -35,14 +37,12 @@ CORE_SRC = \
ao_freq.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_string.c \
ao_timer.c \
diff --git a/src/product/ao_teledongle.c b/src/product/ao_teledongle.c
index 49b80500..0c829e97 100644
--- a/src/product/ao_teledongle.c
+++ b/src/product/ao_teledongle.c
@@ -35,8 +35,6 @@ main(void)
#if HAS_DBG
ao_dbg_init();
#endif
- ao_aes_init();
- ao_radio_cmac_init();
ao_config_init();
ao_start_scheduler();
}
diff --git a/src/product/ao_tidongle.c b/src/product/ao_tidongle.c
index a504a747..cba0b122 100644
--- a/src/product/ao_tidongle.c
+++ b/src/product/ao_tidongle.c
@@ -34,8 +34,6 @@ 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;