mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
399 B
Makefile
15 lines
399 B
Makefile
# configure serial interface
|
|
PORT_LINUX ?= /dev/ttyUSB0
|
|
# This does not make a lot of sense, but it has the same value as the previous code
|
|
PORT_DARWIN ?= /dev/tty.usbserial-ARM
|
|
|
|
# Use lpc2k_pgm programmer
|
|
PROGRAMMER ?= lpc2k_pgm
|
|
|
|
PROGRAMMERS_SUPPORTED += lpc2k_pgm
|
|
|
|
# when using miniterm set RTS and DTR lines to 0, otherwise the board is reset
|
|
MINITERMFLAGS += --rts 0 --dtr 0
|
|
|
|
PYTERMFLAGS += -tg
|