altos: Remove unused AES code from teledongle and tidongle
authorKeith Packard <keithp@keithp.com>
Tue, 5 Jun 2012 03:49:15 +0000 (20:49 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 5 Jun 2012 03:49:15 +0000 (20:49 -0700)
Leave this out as neither of these products need it.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/cc1111/ao_pins.h
src/product/Makefile.telebt
src/product/Makefile.teledongle
src/product/ao_teledongle.c
src/product/ao_tidongle.c
src/tidongle/Makefile

index 5eef0de4fa33732a7546602ade7745199f3dbfa0..0923e75de146a16dda07a1719277de53a7548a3c 100644 (file)
        #define HAS_MONITOR             1
        #define LEGACY_MONITOR          1
        #define HAS_RSSI                1
-       #define HAS_AES                 1
+       #define HAS_AES                 0
 #endif
 
 #if defined(TELEMINI_V_1_0)
        #define HAS_MONITOR             1
        #define LEGACY_MONITOR          1
        #define HAS_RSSI                1
-       #define HAS_AES                 1
+       #define HAS_AES                 0
 #endif
 
 #if defined(TIDONGLE)
        #define HAS_MONITOR             1
        #define LEGACY_MONITOR          1
        #define HAS_RSSI                1
-       #define HAS_AES                 1
+       #define HAS_AES                 0
 #endif
 
 #if defined(TELEBT_V_0_0)
        #define HAS_MONITOR             1
        #define LEGACY_MONITOR          1
        #define HAS_RSSI                0
-       #define HAS_AES                 1
+       #define HAS_AES                 0
 #endif
 
 #if defined(TELEBT_V_0_1)
        #define HAS_MONITOR             1
        #define LEGACY_MONITOR          1
        #define HAS_RSSI                0
-       #define HAS_AES                 1
+       #define HAS_AES                 0
 #endif
 
 #if defined(TELELAUNCH_V_0_1)
index e53aa2c43e60f33232a8850ab21cdfbfb24220e0..90525d63edd0961186f9d641be5cbb18c11f88f0 100644 (file)
@@ -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 \
index 27e7d24be1b1a59448f374d97185e709d1731283..fbf14a04f430cb3c487175bcf66341c024a61b41 100644 (file)
@@ -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 \
index 49b805003bd162d8856bf6904695c22870b27840..0c829e971965251d2397f7d8e83b79d2cd90c7a9 100644 (file)
@@ -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();
 }
index a504a7473c85e242b66ea2ee743233712bea6395..cba0b12249a44757ea674d7500cd6e56785f1db8 100644 (file)
@@ -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;
index 149b00c54eb35487a54935c7ccac3261b83be365..0bb2ce320adf22ebd0937e9c8ae487a4fdb5a889 100644 (file)
@@ -30,14 +30,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 \