mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
14 lines
452 B
Makefile
14 lines
452 B
Makefile
PORT_LINUX ?= /dev/ttyACM0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
|
|
|
# setup the flash tool used
|
|
ifeq ($(PROGRAMMER),jlink)
|
|
# in case J-Link is attached to SWD pins, use a plain CPU memory model
|
|
JLINK_DEVICE = $(MKR_JLINK_DEVICE)
|
|
endif
|
|
|
|
# Include all definitions for flashing with bossa over USB
|
|
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.include
|
|
|
|
INCLUDES += -I$(RIOTBOARD)/common/arduino-mkr/include
|