mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
472 B
Makefile
18 lines
472 B
Makefile
# we use shared STM32 configuration snippets
|
|
INCLUDES += -I$(RIOTBOARD)/common/stm32/include
|
|
|
|
# define the default port depending on the host OS
|
|
PORT_LINUX ?= /dev/ttyUSB0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*)))
|
|
|
|
# this board uses openocd with st-link
|
|
PROGRAMMER ?= openocd
|
|
|
|
OPENOCD_DEBUG_ADAPTER ?= stlink
|
|
|
|
# openocd programmer is supported
|
|
PROGRAMMERS_SUPPORTED += openocd cpy2remed
|
|
|
|
#needed by cpy2remed
|
|
DIR_NAME_AT_REMED = "DISCOVERY"
|