Skip to content
Snippets Groups Projects
Commit c1ac9dc7 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

board: samd21-xpro: make use of shared makefiles/boards/sam0.inc.mk

parent 6ce1846e
No related branches found
No related tags found
No related merge requests found
...@@ -2,24 +2,4 @@ ...@@ -2,24 +2,4 @@
export CPU = samd21 export CPU = samd21
export CPU_MODEL = samd21j18a export CPU_MODEL = samd21j18a
# set default port depending on operating system include $(RIOTMAKE)/boards/sam0.inc.mk
PORT_LINUX ?= /dev/ttyACM0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
# setup serial terminal
include $(RIOTMAKE)/tools/serial.inc.mk
# Add board selector (USB serial) to OpenOCD options if specified.
# Use /dist/tools/usb-serial/list-ttys.sh to find out serial number.
# Usage: SERIAL="ATML..." BOARD="samd21-xpro" make flash
ifneq (,$(SERIAL))
export OPENOCD_EXTRA_INIT += "-c cmsis_dap_serial $(SERIAL)"
SERIAL_TTY = $(firstword $(shell $(RIOTBASE)/dist/tools/usb-serial/find-tty.sh $(SERIAL)))
ifeq (,$(SERIAL_TTY))
$(error Did not find a device with serial $(SERIAL))
endif
PORT_LINUX := $(SERIAL_TTY)
endif
# this board uses openocd
include $(RIOTMAKE)/tools/openocd.inc.mk
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment