2018-05-15 11:29:33 +02:00
|
|
|
export FLASHER ?= $(RIOTTOOLS)/openocd/openocd.sh
|
|
|
|
export DEBUGGER = $(RIOTTOOLS)/openocd/openocd.sh
|
|
|
|
export DEBUGSERVER = $(RIOTTOOLS)/openocd/openocd.sh
|
|
|
|
export RESET ?= $(RIOTTOOLS)/openocd/openocd.sh
|
2015-05-28 15:08:21 +02:00
|
|
|
|
2018-03-26 20:08:49 +02:00
|
|
|
export FFLAGS ?= flash $(ELFFILE)
|
|
|
|
export DEBUGGER_FLAGS ?= debug $(ELFFILE)
|
2015-05-28 15:08:21 +02:00
|
|
|
export DEBUGSERVER_FLAGS ?= debug-server
|
|
|
|
export RESET_FLAGS ?= reset
|
2017-10-06 14:53:26 +02:00
|
|
|
|
|
|
|
ifneq (,$(DEBUG_ADAPTER))
|
|
|
|
include $(RIOTMAKE)/tools/openocd-adapters/$(DEBUG_ADAPTER).inc.mk
|
|
|
|
endif
|