Skip to content

Commit

Permalink
Merge pull request #333 from zygmunt/master
Browse files Browse the repository at this point in the history
Fixed typo in optiboot/bootloaders/optiboot/Makefile.isp for variable FILENAME
  • Loading branch information
WestfW authored Nov 16, 2021
2 parents be65a28 + 93a9bb4 commit 1ab443c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions optiboot/bootloaders/optiboot/Makefile.isp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ AVRDUDE_ROOT ?= $(GCCROOT)
AVRDUDE_CONF ?= -C$(TOOLROOT)/avr/etc/avrdude.conf

# Default filename for the selected target
FILENAME ?=$ (PROGRAM)_$(TARGET).hex
FILENAME ?= $(PROGRAM)_$(TARGET).hex

# These are the parameters for a usb-based STK500v2 programmer.
# Exact type unknown. (historical Makefile values.)
Expand Down Expand Up @@ -72,7 +72,7 @@ ISPFUSES = -e -u -U lock:w:0x$(LOCKFUSE):m $(EFUSE_CMD) \
# space from accidental SPM writes. Note: "2f" allows boot section to be read
# by the application, which is different than the arduino default.
#
ISPFLASH = -U flash:w:$(FILENAME).hex -U lock:w:$(LOCKFUSE):m
ISPFLASH = -U flash:w:$(FILENAME) -U lock:w:$(LOCKFUSE):m

# There are certain complicated caused by the fact that the default state
# of a fuse is a "1" rather than a "0", especially with respect to fuse bits
Expand Down

0 comments on commit 1ab443c

Please sign in to comment.