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

makefiles/boards/sam0.inc.mk: dap: use OpenOCD for debugging

ebdg can only be used for flashing, we still have to use OpenOCD for
debugging.

fixes #14328
This commit is contained in:
Benjamin Valentin 2020-06-24 16:06:12 +02:00
parent 21f9afdb5b
commit a653667172

View File

@ -43,6 +43,8 @@ endif
ifeq ($(PROGRAMMER),edbg)
# use edbg for flashing
include $(RIOTMAKE)/tools/edbg.inc.mk
# use openocd for debugging
include $(RIOTMAKE)/tools/openocd.inc.mk
else ifeq ($(PROGRAMMER),jlink)
# this board uses J-Link for debug and possibly flashing
include $(RIOTMAKE)/tools/jlink.inc.mk