diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-11-19 21:46:25 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-11-19 21:46:25 +0100 |
commit | 11ec83d29b1d922d37c7212c1cf94549ff3de5b1 (patch) | |
tree | ddabde5c05c59800c88b0a37837f7c6ac4a55012 /sw/Makefile | |
parent | d81645c52f11f0817281dbb8eff637cdea1bf2ea (diff) | |
download | glutte-batteries-11ec83d29b1d922d37c7212c1cf94549ff3de5b1.tar.gz glutte-batteries-11ec83d29b1d922d37c7212c1cf94549ff3de5b1.tar.bz2 glutte-batteries-11ec83d29b1d922d37c7212c1cf94549ff3de5b1.zip |
Fix LTC2400 readout
Diffstat (limited to 'sw/Makefile')
-rw-r--r-- | sw/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/Makefile b/sw/Makefile index 259583d..931455a 100644 --- a/sw/Makefile +++ b/sw/Makefile @@ -119,7 +119,7 @@ clean: # Send to device program: $(APP_HEX) $(SIZE) -C $(BUILD_DIR)/$(APP_ELF) - $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(AVRDUDE_DEV) -p $(AVRDUDE_PART) -U flash:w:$(BUILD_DIR)/$(APP_HEX) -v + $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(AVRDUDE_DEV) -p $(AVRDUDE_PART) -U flash:w:$(BUILD_DIR)/$(APP_HEX) -v -B 8 fuse: $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(AVRDUDE_DEV) -p $(AVRDUDE_PART) -U lfuse:w:0x7e:m -U hfuse:w:0xd9:m -U efuse:w:0xfc:m -v |