mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Alexandre Abadie
3f02e3bd12
This allows to remove the last cc2538-bsl programmer conditional at board level
11 lines
312 B
Makefile
11 lines
312 B
Makefile
# define the default port depending on the host OS
|
|
PORT_LINUX ?= /dev/ttyUSB1
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*)))
|
|
|
|
PROGRAMMER ?= cc2538-bsl
|
|
|
|
CC2538_BSL_FLAGS_OPTS ?= --bootloader-invert-lines
|
|
CC2538_BSL_FLASHFILE ?= $(HEXFILE)
|
|
|
|
include $(RIOTBOARD)/common/cc2538/Makefile.include
|