mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
f874f241fa
Update to use FLASHFILE as file to be flashed on the board.
11 lines
341 B
Makefile
11 lines
341 B
Makefile
FLASHER ?= $(RIOTBASE)/dist/tools/pyocd/pyocd.sh
|
|
DEBUGGER = $(RIOTBASE)/dist/tools/pyocd/pyocd.sh
|
|
DEBUGSERVER = $(RIOTBASE)/dist/tools/pyocd/pyocd.sh
|
|
RESET ?= $(RIOTBASE)/dist/tools/pyocd/pyocd.sh
|
|
|
|
FLASHFILE ?= $(HEXFILE)
|
|
FFLAGS ?= flash $(FLASHFILE)
|
|
DEBUGGER_FLAGS ?= debug $(ELFFILE)
|
|
DEBUGSERVER_FLAGS ?= debug-server
|
|
RESET_FLAGS ?= reset
|