1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

boards/pyterm: change TERMFLAGS to PYTERMFLAGS

The boards are using `pyterm` specific options that do not work on any
other `RIOT_TERMINAL`. It is a shame this is required but at least do
not pass arbitrary arguments to the other RIOT_TERMINAL.
So use the new PYTERMFLAGS for this.
This commit is contained in:
Gaëtan Harter 2019-08-27 12:12:16 +02:00
parent 62fe786cd8
commit 367aa841a2
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ 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
TERMFLAGS += -tg
PYTERMFLAGS += -tg
include $(RIOTMAKE)/tools/serial.inc.mk
export CFLAGS_CPU = -mcpu=arm7tdmi-s

View File

@ -17,4 +17,4 @@ FLASHFILE ?= $(BINFILE)
# -l 0x1ff: amount of sectors to erase
FFLAGS += -p $(PORT) -e -u -S -l 0x1ff -w $(FLASHFILE)
TERMFLAGS += --set-rts 0
PYTERMFLAGS += --set-rts 0