From 2e62dda0315beb955aab3c07b8823d6fd0d0f634 Mon Sep 17 00:00:00 2001 From: Travis Goodspeed Date: Sat, 23 Sep 2017 12:36:20 -0400 Subject: [PATCH] Makefile uses new BSL script. --- firmware/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/firmware/Makefile b/firmware/Makefile index 26a927c..988eb30 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -2,6 +2,9 @@ #Standard Debian gcc-msp430 and msp430mcu packages. CC = msp430-gcc -mmcu=cc430f6137 +BSL = ../bin/cc430-bsl.py + + modules=main.o lcd.o all: goodwatch.hex @@ -9,11 +12,12 @@ all: goodwatch.hex goodwatch: $(modules) $(CC) -o goodwatch $(modules) goodwatch.hex: goodwatch - msp430-objcopy -O ihex main main.hex + msp430-objcopy -O ihex goodwatch goodwatch.hex clean: rm -f *~ *.hex *.elf *.o goodwatch erase: - python -m msp430.bsl5.uart -p /dev/ttyUSB0 --invert-test --invert-reset -v -e + $(BSL) -e +