Blame view

RIOT/boards/Makefile.include.serial 363 Bytes
fb11e647   vrobic   reseau statique a...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  # set default port depending on operating system
  OS := $(shell uname)
  ifeq ($(OS),Linux)
    PORT ?= $(PORT_LINUX)
  else ifeq ($(OS),Darwin)
    PORT ?= $(PORT_DARWIN)
  endif
  
  ifeq ($(PORT),)
      $(info Warning: no PORT set!)
  endif
  
  export BAUD ?= 115200
  export TERMFLAGS += -p "$(PORT)" -b "$(BAUD)"
  export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm
  
  export PORT