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

15 lines
389 B
Makefile
Raw Normal View History

# Include shared STM32 headers
INCLUDES += -I$(RIOTBOARD)/common/stm32/include
2016-11-25 20:35:19 +01:00
# define the default port depending on the host OS
PORT_LINUX ?= /dev/ttyACM0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*)))
# setup serial terminal
include $(RIOTMAKE)/tools/serial.inc.mk
2016-11-25 20:35:19 +01:00
DEBUG_ADAPTER ?= stlink
2016-11-25 20:35:19 +01:00
# this board uses openocd
include $(RIOTMAKE)/tools/openocd.inc.mk