Faster SPI Flash dumping, but it's a bit ugly.
[goodfet] / firmware / Makefile
index 5bc3555..4e4cbc4 100644 (file)
@@ -1,9 +1,12 @@
 
-PORT=/dev/ttyUSB0
-BSL=../../contrib/tos-bsl --invert-reset --invert-test -c $(PORT) --speed=38400
+#include `uname`.mak
 
+GOODFET?=/dev/ttyUSB0
+BSL=../../contrib/tos-bsl --invert-reset --invert-test -c $(GOODFET) --speed=38400
+
+#mcu=msp430x2274
 #mcu=msp430x2618
-mcu=msp430x1612
+mcu?=msp430x1612
 
 
 #N.B., gcc WILL NOT BITCH if this file doesn't exist.
@@ -24,9 +27,13 @@ run:
        ../client/goodfet.msp430 test
 
 install: $(app).hex
-       $(BSL) -e -p $(app).hex 
+       $(BSL) -e
+       #$(BSL) -p info.txt || true  #MSP430F2xx targets only, inelegant.
+       $(BSL) -p $(app).hex 
 verify:
        $(BSL) -P $(app).hex -v $(app).hex
+dumpinfo:
+       $(BSL) --dumpinfo
 $(app): $(app).c $(libs) $(apps)
 $(app).hex: $(app)
        msp430-objcopy goodfet -O ihex goodfet.hex