Skip to content
Snippets Groups Projects
Commit 548a52b4 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Changed avrdude options in makefile to prevent overwriting bootloader.

parent c07db16a
Branches
Tags
1 merge request!3Develop
Pipeline #63 passed with stage
in 10 seconds
......@@ -487,7 +487,7 @@ rebuilddoc: cleandoc doc
program: all flash
# Flash µC - flash and disables JTAG
AVRDUDE_FLAGS = -p $(AVRDUDE_DEV) -c $(AVRDUDE_PROG) -P $(AVRDUDE_PORT) -U flash:w:$(TARGET):e -U fuse4:w:0xff:m
AVRDUDE_FLAGS = -p $(AVRDUDE_DEV) -c $(AVRDUDE_PROG) -P $(AVRDUDE_PORT) -U application:w:$(TARGET):e -U fuse4:w:0xff:m
flash: $(TARGET)
avrdude $(AVRDUDE_FLAGS)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment