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