mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
491 B
Makefile
15 lines
491 B
Makefile
export CPU = cc26x0
|
|
export CPU_MODEL = cc26x0f128
|
|
|
|
# set default port depending on operating system
|
|
PORT_LINUX ?= /dev/ttyACM0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*)))
|
|
|
|
# setup serial terminal
|
|
include $(RIOTBOARD)/Makefile.include.serial
|
|
|
|
# configure the flash tool
|
|
export UNIFLASH_PATH ?= "UNIFLASH_PATH unconfigured"
|
|
export FLASHER = $(UNIFLASH_PATH)/uniflash.sh
|
|
export FFLAGS = -ccxml $(RIOTBOARD)/$(BOARD)/dist/cc26x0stk.ccxml -program $(ELFFILE)
|