1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-17 10:33:49 +01:00

Merge pull request #1773 from thomaseichinger/fix_iot-lab_term

boards/iot-lab_M3: fix PORT for TERM
This commit is contained in:
Ludwig Ortmann 2014-10-07 05:59:51 -07:00
commit 62d288d94b

View File

@ -7,7 +7,7 @@ OS := $(shell uname)
ifeq ($(OS),Linux) ifeq ($(OS),Linux)
PORT ?= /dev/ttyUSB1 PORT ?= /dev/ttyUSB1
else ifeq ($(OS),Darwin) else ifeq ($(OS),Darwin)
PORT ?= $(shell ls -1 /dev/tty.usbmodem* | head -n 1) PORT ?= $(shell ls -1 /dev/tty.usbserial* | head -n 1)
else else
$(info CAUTION: No PORT was defined for your host platform!) $(info CAUTION: No PORT was defined for your host platform!)
# TODO: add support for windows as host platform # TODO: add support for windows as host platform