MSP430 JTAG works.
[goodfet] / firmware / apps / Makefile
index b3aa926..40114b3 100644 (file)
@@ -1,6 +1,6 @@
 
 PORT=/dev/ttyUSB0
-BSL=tos-bsl --invert-reset --invert-test -c $(PORT)
+BSL=tos-bsl --invert-reset --invert-test -c $(PORT) --speed=38400
 
 #mcu=msp430x1611
 mcu=msp430x1612
@@ -10,14 +10,25 @@ GCCINC=-T ../ldscripts/161x.x
 
 CC=msp430-gcc -g -mmcu=$(mcu) -DGCC $(GCCINC) -I ../include
 
-apps= monitor/monitor.c spi/spi.c
+apps= monitor/monitor.c spi/spi.c i2c/i2c.c chipcon/chipcon.c jtag/jtag.c jtag/jtag430.c
 libs= ../lib/msp430f1612.c ../lib/command.c
 app=goodfet
 
+all: $(app)
+
+goodfet.hex: goodfet
+
+run:
+       ../../client/goodfet.msp430
+
 install: $(app)
-       $(BSL) -e -p $(app) 
-       $(BSL) -P $(app) -r
+       $(BSL) -e -p $(app).hex 
+       $(BSL) -P $(app).hex -r
 $(app): $(app).c $(libs) $(apps)
+$(app).hex: $(app)
+       msp430-objcopy goodfet -O ihex goodfet.hex
+m4s: $(app).hex
+       msp430-objdump -D -m msp430 $(app).hex | m4s init
 erase:
        $(BSL) -e 
 clean: