diff options
author | Keith Packard <keithp@keithp.com> | 2011-08-27 13:28:01 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-27 13:28:01 -0700 |
commit | bc827699be4ed9ac60a7e862e6532791968bf685 (patch) | |
tree | 0f0fc30830c0d35d6d8f4b8c6ac96de9cf250c07 /src | |
parent | 8a1cbef0e316e38c80b71d3bac15641fe56e0a99 (diff) |
altos: Fix up telelaunch Makefile
Adding all of the mising sources
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/product/Makefile.telelaunch | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/product/Makefile.telelaunch b/src/product/Makefile.telelaunch index 71781bb1..5da42e46 100644 --- a/src/product/Makefile.telelaunch +++ b/src/product/Makefile.telelaunch @@ -22,23 +22,26 @@ CORE_SRC = \ ao_cmd.c \ ao_config.c \ ao_convert.c \ + ao_launch.c \ ao_mutex.c \ ao_panic.c \ ao_stdio.c \ ao_storage.c \ - ao_task.c \ - ao_sample.c + ao_task.c CC1111_SRC = \ ao_adc.c \ + ao_aes.c \ ao_beep.c \ ao_dbg.c \ ao_dma.c \ ao_ignite.c \ + ao_intflash.c \ ao_led.c \ ao_packet.c \ ao_packet_slave.c \ ao_radio.c \ + ao_radio_cmac.c \ ao_romconfig.c \ ao_serial.c \ ao_spi.c \ @@ -61,6 +64,7 @@ PROG = telelaunch-v$(TELELAUNCH_VER)-$(VERSION).ihx PRODUCT=TeleLaunch-v$(TELELAUNCH_VER) PRODUCT_DEF=-DTELELAUNCH_V_$(TELELAUNCH_DEF) IDPRODUCT=0x000f +CODESIZE=0x6700 include ../cc1111/Makefile.cc1111 |