Blame view

RIOT/boards/iotlab-common/Makefile.include 477 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  # the cpu to build for
  export CPU = stm32f1
  export CPU_MODEL = stm32f103re
  
  # define the default port depending on the host OS
  PORT_LINUX ?= /dev/ttyUSB1
  PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*B)))
  
  # setup serial terminal
  export BAUD = 500000
  include $(RIOTMAKE)/tools/serial.inc.mk
  
  # this board uses openocd
  include $(RIOTMAKE)/tools/openocd.inc.mk
  
  # add the common header files to the include path
  INCLUDES += -I$(RIOTBOARD)/iotlab-common/include