goodwatch/firmware/Makefile

20 lines
379 B
Makefile
Raw Normal View History

2017-09-21 19:31:09 +00:00
#Standard Debian gcc-msp430 and msp430mcu packages.
CC = msp430-gcc -mmcu=cc430f6137
2017-09-21 19:31:09 +00:00
modules=main.o lcd.o
all: goodwatch.hex
goodwatch: $(modules)
$(CC) -o goodwatch $(modules)
goodwatch.hex: goodwatch
msp430-objcopy -O ihex main main.hex
2017-09-21 19:31:09 +00:00
clean:
rm -f *~ *.hex *.elf *.o goodwatch
2017-09-21 19:31:09 +00:00
erase:
python -m msp430.bsl5.uart -p /dev/ttyUSB0 --invert-test --invert-reset -v -e