1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

makefiles/tools/dfu: add initial DFU programming support

This commit is contained in:
Kaspar Schleiser 2019-02-28 13:47:19 +01:00
parent 3e7b3d380d
commit f74b819efe

View File

@ -0,0 +1,8 @@
DFU ?= dfu-util
FLASHER ?= $(DFU)
HEXFILE = $(BINFILE)
FFLAGS ?= -D $(HEXFILE) --reset $(DFU_ARGS)
RESET ?= $(DFU)
RESET_FLAGS ?= $(DFU_ARGS) -t $(DFU_DEVICE_TYPE)