mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
532 B
Makefile
18 lines
532 B
Makefile
MSPDEBUGFLAGS += -j $(MSPDEBUG_PROGRAMMER)
|
|
ifeq ($(strip $(MSPDEBUG_PROGRAMMER)),uif)
|
|
MSPDEBUGFLAGS += -d $(PROG_DEV)
|
|
endif
|
|
FLASHER ?= mspdebug
|
|
FLASHFILE ?= $(HEXFILE)
|
|
FFLAGS = $(MSPDEBUGFLAGS) "prog $(FLASHFILE)"
|
|
|
|
# setup debugger
|
|
DEBUGSERVER = $(FLASHER)
|
|
DEBUGSERVER_FLAGS = $(MSPDEBUGFLAGS) gdb
|
|
DEBUGGER = $(PREFIX)gdb
|
|
DEBUGGER_FLAGS = --ex="target remote localhost:2000" --ex "monitor reset halt" --ex load -ex "monitor reset halt" $(DEBUG_ELFFILE)
|
|
|
|
# setup reset tool
|
|
RESET ?= mspdebug
|
|
RESET_FLAGS ?= $(MSPDEBUGFLAGS) reset
|