changes to the GUI to allow for better loading and writing as well as tested our...
[goodfet] / firmware / Makefile
index 19e9976..5e2c5a3 100644 (file)
@@ -55,6 +55,7 @@ CC =$(GCC) -Wall -O1 -fno-strict-aliasing -g   $(CCEXTRA)
 #  Radions:
 # nrf -- Nordic RF SPI
 # ccspi -- Chipcon SPI
+# cc2500 -- Chipcon SPI CC2500
 # atmel_radio -- Atmel radio
 
 # Miscelaneous:
@@ -261,6 +262,12 @@ ifeq ($(filter ccspi, $(config)), ccspi)
        hdrs+= ccspi.h
 endif
 
+# include chipcon CC2500 radio spi app
+ifeq ($(filter cc2500, $(config)), cc2500)
+       apps+= apps/radios/cc2500.o
+       hdrs+= cc2500.h
+endif
+
 # include nrf app
 ifeq ($(filter nrf, $(config)), nrf)
        apps+= apps/radios/nrf.o