mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
c010f59b8c
- OS := $(shell uname) is already declared in `Makefile.include` re-declaring it means it will be re-evalauted multiple times uselessly.
22 lines
672 B
Makefile
22 lines
672 B
Makefile
# set default port depending on operating system
|
|
ifeq ($(OS),Linux)
|
|
PORT ?= $(call ensure_value,$(PORT_LINUX),No port set)
|
|
else ifeq ($(OS),Darwin)
|
|
PORT ?= $(call ensure_value,$(PORT_DARWIN),No port set)
|
|
endif
|
|
|
|
export BAUD ?= 115200
|
|
|
|
RIOT_TERMINAL ?= pyterm
|
|
ifeq ($(RIOT_TERMINAL),pyterm)
|
|
TERMPROG ?= $(RIOTTOOLS)/pyterm/pyterm
|
|
TERMFLAGS ?= -p "$(PORT)" -b "$(BAUD)" $(PYTERMFLAGS)
|
|
else ifeq ($(RIOT_TERMINAL),socat)
|
|
SOCAT_OUTPUT ?= -
|
|
TERMPROG ?= $(RIOT_TERMINAL)
|
|
TERMFLAGS ?= $(SOCAT_OUTPUT) open:$(PORT),b$(BAUD),echo=0,raw
|
|
else ifeq ($(RIOT_TERMINAL),picocom)
|
|
TERMPROG ?= picocom
|
|
TERMFLAGS ?= --nolock --imap lfcrlf --baud "$(BAUD)" "$(PORT)"
|
|
endif
|