mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
11 lines
301 B
Makefile
11 lines
301 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
|
|
PROGRAMMER ?= goodfet
|
|
GOODFET_FLAGS ?= --telosb
|