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

Merge pull request #9333 from cladmi/pr/make/fix/stm32f103c8

stm32f103c8: fix Makefile.include INCLUDES definition
This commit is contained in:
Alexandre Abadie 2018-07-04 09:56:35 +02:00 committed by GitHub
commit ce917269da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,8 @@
export CPU = stm32f1
export CPU_MODEL = stm32f103c8
INCLUDES += -I$(RIOTBOARD)/common/stm32f103c8/include
# define the default port depending on the host OS
PORT_LINUX ?= /dev/ttyUSB0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*)))
@ -24,11 +26,9 @@ ifeq ($(PROGRAMMER),dfu-util)
export FFLAGS = -d 1d50:6017 -s 0x08002000:leave -D "$(HEXFILE)"
else
# this board uses openocd by default
export DEBUG_ADAPTER ?= stlink
export STLINK_VERSION ?= 2
# this board uses openocd by default
export DEBUG_ADAPTER ?= stlink
export STLINK_VERSION ?= 2
include $(RIOTMAKE)/tools/openocd.inc.mk
INCLUDES += -I$(RIOTBOARD)/common/stm32f103c8/include
include $(RIOTMAKE)/tools/openocd.inc.mk
endif