You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
458 B
14 lines
458 B
# CPU used by this board |
|
export CPU = msp430fxyz |
|
export CPU_MODEL = msp430f2617 |
|
|
|
# set default port depending on operating system |
|
PORT_LINUX ?= /dev/ttyUSB0 |
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*))) |
|
# setup serial terminal |
|
include $(RIOTBOARD)/Makefile.include.serial |
|
|
|
# setup flash tool |
|
export OFLAGS = -O ihex |
|
export FLASHER = $(RIOTBASE)/dist/tools/goodfet/goodfet.bsl |
|
export FFLAGS = --z1 -I -c $(PORT) -r -e -p $(HEXFILE)
|
|
|