1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #17373 from fjmolinas/pr_lora_e5_dev_osx_port

boards/lora-e5-dev: fix default DARWIN port
This commit is contained in:
Francisco 2021-12-10 15:32:06 +01:00 committed by GitHub
commit f913ca4ce5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ INCLUDES += -I$(RIOTBOARD)/common/stm32/include
# define the default port depending on the host OS
PORT_LINUX ?= /dev/ttyUSB0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*)))
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*)))
# Setup of programmer and serial is shared between STM32 based boards
include $(RIOTMAKE)/boards/stm32.inc.mk