2016-05-18 21:18:35 +02:00
|
|
|
# the SmartRF06 Evaluation Board serial numbers all begin with "06EB":
|
2019-06-03 10:25:56 +02:00
|
|
|
PROGRAMMER_SERIAL ?= 06EB
|
2016-05-18 21:18:35 +02:00
|
|
|
|
2015-04-22 15:45:34 +02:00
|
|
|
# setup serial terminal
|
2016-05-18 21:18:35 +02:00
|
|
|
# the debug UART is always the second tty with the matching serial number:
|
2018-05-15 11:23:44 +02:00
|
|
|
PORT_LINUX ?= $(word 2,$(shell $(RIOTTOOLS)/usb-serial/find-tty.sh '^$(PROGRAMMER_SERIAL)'))
|
2016-03-07 19:38:50 +01:00
|
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*)))
|
2014-10-13 15:29:49 +02:00
|
|
|
|
2020-08-07 10:59:44 +02:00
|
|
|
include $(RIOTBOARD)/common/cc2538/Makefile.include
|