1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

make/serial.inc.mk: set TERMFLAGS only if not set

This commit is contained in:
Hauke Petersen 2017-05-18 15:29:58 +02:00
parent 3098a277ed
commit 2739354bab

View File

@ -11,7 +11,7 @@ ifeq ($(PORT),)
endif
export BAUD ?= 115200
export TERMFLAGS += -p "$(PORT)" -b "$(BAUD)"
export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm
export TERMFLAGS ?= -p "$(PORT)" -b "$(BAUD)"
export TERMPROG ?= $(RIOTBASE)/dist/tools/pyterm/pyterm
export PORT