Emergency fix: accidentally used C comment style in Python.
[goodfet] / firmware / config.mk
index 1461c25..2a26346 100644 (file)
@@ -42,15 +42,22 @@ mcu := msp430x5510
 platform := goodfet
 endif
 
-ifneq (,$(findstring $(board),telosb))
+ifeq ($(board),telosb)
+mcu := msp430x1612
+platform := telosb
+config := monitor spi ccspi
+CFLAGS += -Duseuart1
+endif
+
+ifeq ($(board),telosbbt)
 mcu :=msp430x1612
-platform := goodfet
-CFLAGS := -DDEBUG_LEVEL=3 -DDEBUG_START=1 -DINBAND_DEBUG
-#CFLAGS+= -Werror
+platform := telosb
 config := monitor spi ccspi
 endif
 
 
+
+
 ##################################
 ## These are experimental boards.
 ##################################
@@ -111,6 +118,6 @@ CONFIG_ps2        ?= n
 CONFIG_slc2       ?= n
 
 #The CONFIG_foo vars are only interpreted if $(config) is unset.
-#ifeq ($(config),undef)
+ifeq ($(config),undef)
 config += $(foreach app,$(AVAILABLE_APPS),$(if $(findstring $(CONFIG_$(app)),y yes t true Y YES T TRUE),$(app)))
-#endif
+endif