mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-28 23:09:46 +01:00
Merge #19444
19444: makefiles/tools/serial.inc.mk: Handle new miniterm versions r=maribu a=MrKevinWeiss ### Contribution description While testing examples/micropython I notice that the default of miniterm.py is actually miniterm. To simplify user setups, this checks for miniterm.py first then falls back to miniterm. ### Testing procedure Take any board with any newish version of Ubuntu and run ``` make -C flash test examples/micropython ``` If you have `miniterm.py` in `PATH` or if it is `miniterm` both should work. ### Issues/PRs references Co-authored-by: MrKevinWeiss <weiss.kevin604@gmail.com>
This commit is contained in:
commit
d6dc3a1603
@ -53,7 +53,13 @@ else ifeq ($(RIOT_TERMINAL),picocom)
|
||||
TERMPROG ?= picocom
|
||||
TERMFLAGS ?= --nolock --imap lfcrlf --baud "$(BAUD)" "$(PORT)"
|
||||
else ifeq ($(RIOT_TERMINAL),miniterm)
|
||||
TERMPROG ?= miniterm.py
|
||||
# Check if miniterm.py is available in the path, if not use just miniterm
|
||||
# since new versions will only have miniterm and not miniterm.py
|
||||
ifeq (,$(shell command -v miniterm.py 2>/dev/null))
|
||||
TERMPROG ?= miniterm
|
||||
else
|
||||
TERMPROG ?= miniterm.py
|
||||
endif
|
||||
# The RIOT shell will still transmit back a CRLF, but at least with --eol LF
|
||||
# we avoid sending two lines on every "enter".
|
||||
TERMFLAGS ?= --eol LF "$(PORT)" "$(BAUD)" $(MINITERMFLAGS)
|
||||
|
Loading…
Reference in New Issue
Block a user