From 4c60c56bb3c1504af3f09ca5580bb589ffce3739 Mon Sep 17 00:00:00 2001 From: Thomas Eichinger Date: Tue, 7 Oct 2014 12:33:30 +0200 Subject: [PATCH] boards/iot-lab_M3: fix PORT --- boards/iot-lab_M3/Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/iot-lab_M3/Makefile.include b/boards/iot-lab_M3/Makefile.include index e56768caed..68bbf59be2 100644 --- a/boards/iot-lab_M3/Makefile.include +++ b/boards/iot-lab_M3/Makefile.include @@ -7,7 +7,7 @@ OS := $(shell uname) ifeq ($(OS),Linux) PORT ?= /dev/ttyUSB1 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 $(info CAUTION: No PORT was defined for your host platform!) # TODO: add support for windows as host platform