Client support for goodfet.bsl when board=telosbbt.
[goodfet] / firmware / config.mk
index 2cf09bd..0392839 100644 (file)
@@ -45,11 +45,20 @@ endif
 ifneq (,$(findstring $(board),telosb))
 mcu :=msp430x1612
 platform := goodfet
-CFLAGS := -DDEBUG_LEVEL=3 -DDEBUG_START=1 -DINBAND_DEBUG
+CFLAGS := -Dtelosb
 #CFLAGS+= -Werror
 config := monitor spi ccspi
 endif
 
+ifneq (,$(findstring $(board),telosbbt))
+mcu :=msp430x1612
+platform := goodfet
+#CFLAGS+= -Werror
+config := monitor spi ccspi
+endif
+
+
+
 
 ##################################
 ## These are experimental boards.
@@ -112,5 +121,5 @@ CONFIG_slc2       ?= n
 
 #The CONFIG_foo vars are only interpreted if $(config) is unset.
 ifeq ($(config),undef)
-config := $(foreach app,$(AVAILABLE_APPS),$(if $(findstring $(CONFIG_$(app)),y yes t true Y YES T TRUE),$(app)))
+config += $(foreach app,$(AVAILABLE_APPS),$(if $(findstring $(CONFIG_$(app)),y yes t true Y YES T TRUE),$(app)))
 endif