mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
7 lines
266 B
Makefile
7 lines
266 B
Makefile
|
# CMSIS DAP debug adapter
|
||
|
OPENOCD_ADAPTER_INIT ?= -c 'source [find interface/cmsis-dap.cfg]'
|
||
|
# Add serial matching command, only if DEBUG_ADAPTER_ID was specified
|
||
|
ifneq (,$(DEBUG_ADAPTER_ID))
|
||
|
OPENOCD_ADAPTER_INIT += -c 'cmsis_dap_serial $(DEBUG_ADAPTER_ID)'
|
||
|
endif
|