mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
bd19a55804
EDBG_DEVICE_TYPE is a property of the CPU, is should not be set by every board individually.
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
# set default port depending on operating system
|
|
PORT_LINUX ?= /dev/ttyACM0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
|
# Use DEBUG_ADAPTER_ID to specify the programmer serial number to use:
|
|
# DEBUG_ADAPTER_ID="ATML..."
|
|
|
|
# The SERIAL setting is only available for backwards compatibility with older
|
|
# settings.
|
|
ifneq (,$(SERIAL))
|
|
EDBG_ARGS += --serial $(SERIAL)
|
|
SERIAL_TTY = $(firstword $(shell $(RIOTTOOLS)/usb-serial/find-tty.sh $(SERIAL)))
|
|
ifeq (,$(SERIAL_TTY))
|
|
$(error Did not find a device with serial $(SERIAL))
|
|
endif
|
|
PORT_LINUX := $(SERIAL_TTY)
|
|
DEBUG_ADAPTER_ID ?= $(SERIAL)
|
|
endif
|
|
|
|
# setup serial terminal
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|
|
|
|
# Default for these boards is to use a CMSIS-DAP programmer
|
|
DEBUG_ADAPTER ?= dap
|
|
|
|
# EDBG can only be used with a compatible Atmel programmer
|
|
ifeq ($(DEBUG_ADAPTER),dap)
|
|
# set this to either openocd, jlink or edbg
|
|
PROGRAMMER ?= edbg
|
|
else ifeq ($(DEBUG_ADAPTER),jlink)
|
|
# only use JLinkExe if it's installed
|
|
ifneq (,$(shell command -v JLinkExe))
|
|
PROGRAMMER ?= jlink
|
|
else
|
|
PROGRAMMER ?= openocd
|
|
endif
|
|
else
|
|
PROGRAMMER ?= openocd
|
|
endif
|
|
|
|
# use edbg if selected and a device type has been set
|
|
ifeq ($(PROGRAMMER),edbg)
|
|
include $(RIOTMAKE)/tools/edbg.inc.mk
|
|
endif
|
|
|
|
ifeq ($(PROGRAMMER),jlink)
|
|
# this board uses J-Link for debug and possibly flashing
|
|
include $(RIOTMAKE)/tools/jlink.inc.mk
|
|
else
|
|
# this board uses openocd for debug and possibly flashing
|
|
include $(RIOTMAKE)/tools/openocd.inc.mk
|
|
endif
|