X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2FMakefile;h=9b738830ba34f414437c237eb87c0b9d1fb69b07;hp=b17708b6828a04a25abb1eb6f8a1aa1b7e6cef4b;hb=511125f08e1abbb0160c70062aec514154367383;hpb=3bf98a899ca8003835b69d949d299369a5d7a4f7 diff --git a/firmware/Makefile b/firmware/Makefile index b17708b..9b73883 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -1,29 +1,53 @@ -PORT=/dev/ttyUSB0 -BSL=msp430-bsl --invert-reset --invert-test -c $(PORT) --speed=38400 +#include `uname`.mak +GOODFET?=/dev/ttyUSB0 -#mcu=msp430x1611 -mcu=msp430x1612 -#ldscript is wonky -GCCINC=-T ldscripts/161x.x +#For tos-bsl, use --invert-reset --invert-test +BSL=goodfet.bsl -c $(GOODFET) --speed=38400 -CC=msp430-gcc -Wall -g -mmcu=$(mcu) -DGCC $(GCCINC) -I include -apps= apps/monitor/monitor.o apps/spi/spi.o apps/i2c/i2c.o apps/chipcon/chipcon.o apps/jtag/jtag.o apps/jtag/jtag430.o -libs= lib/msp430f1612.o lib/command.o apps/jtag/jtag430asm.o -app=goodfet +#One of these should be defined explicitly. +#Default removed because of confusion. + +#mcu=msp430x2274 +#mcu=msp430x2618 +#mcu?=msp430x1612 +mcu?=RUNCONFIG + +#N.B., gcc WILL NOT BITCH if this file doesn't exist. +#GCCINC=-T ldscripts/161x.x +GCCINC=-T ldscripts/$(mcu).x + +CCEXTRA?= +CC=msp430-gcc -Wall -Os -g -mmcu=$(mcu) -D$(mcu) -DGCC $(GCCINC) -I include $(CCEXTRA) + +#Define extra modules here. +moreapps?=apps/i2c/i2c.o apps/chipcon/chipcon.o + +apps= $(moreapps) apps/monitor/monitor.o apps/spi/spi.o apps/jtag/jtag.o apps/jtag/jtag430.o apps/jtag/jtag430x2.o apps/avr/avr.o +libs= lib/$(mcu).o lib/command.o apps/jtag/jtag430asm.o +app= goodfet all: $(app).hex +lib/RUNCONFIG.o: + ./configure + false + goodfet.hex: goodfet run: ../client/goodfet.msp430 test install: $(app).hex + #$(BSL) -e + #ls info.txt && $(BSL) -p info.txt || true #MSP430F2xx targets only, inelegant. $(BSL) -e -p $(app).hex - #$(BSL) -P $(app).hex -r +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 @@ -33,3 +57,8 @@ erase: $(BSL) -e clean: rm -f $(app) $(app).hex $(libs) $(apps) +docs: + doxygen +pushdocs: docs + rsync --exclude .svn -ave ssh doc/html/* travisutk,goodfet@web.sourceforge.net:htdocs/docs/ +.FAKE: docs