1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/telosb/Makefile.include
Alexandre Abadie bd81060354
boards/{telosb,iotlab}: remove useless export for BAUD
The variable is already eported in serial.inc.mk
2020-03-03 14:18:03 +01:00

12 lines
378 B
Makefile

# set default port depending on operating system
PORT_LINUX ?= /dev/ttyUSB0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial-MXV*)))
# setup serial terminal
BAUD ?= 9600
include $(RIOTMAKE)/tools/serial.inc.mk
# flash tool configuration
FLASHER = $(RIOTTOOLS)/goodfet/goodfet.bsl
FLASHFILE ?= $(HEXFILE)
FFLAGS = --telosb -c $(PROG_DEV) -r -e -I -p $(FLASHFILE)