Add dfu-util command for programming
Also add .bin generation, which is needed for dfu-util.
This commit is contained in:
parent
b4cd0cfd15
commit
f9a6e34c28
3 changed files with 12 additions and 1 deletions
|
@ -234,6 +234,7 @@ MSG_COFF = Converting to AVR COFF:
|
|||
MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
|
||||
MSG_FLASH = Creating load file for Flash:
|
||||
MSG_EEPROM = Creating load file for EEPROM:
|
||||
MSG_BIN = Creating binary load file for Flash:
|
||||
MSG_EXTENDED_LISTING = Creating Extended Listing:
|
||||
MSG_SYMBOL_TABLE = Creating Symbol Table:
|
||||
MSG_LINKING = Linking:
|
||||
|
@ -369,6 +370,11 @@ gccversion :
|
|||
$(eval CMD=$(NM) -n $< > $@ )
|
||||
@$(BUILD_CMD)
|
||||
|
||||
%.bin: %.elf
|
||||
@$(SILENT) || printf "$(MSG_BIN) $@" | $(AWK_CMD)
|
||||
$(eval CMD=$(BIN) $< $@ || exit 0)
|
||||
@$(BUILD_CMD)
|
||||
|
||||
# Create library from object files.
|
||||
.SECONDARY : $(BUILD_DIR)/$(TARGET).a
|
||||
.PRECIOUS : $(OBJ)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue