2017-11-16 15:14:31 +01:00
|
|
|
# include this module in the build
|
|
|
|
USEMODULE += boards_common_wsn430
|
|
|
|
# use common wsn430 includes
|
2019-08-27 16:06:41 +02:00
|
|
|
INCLUDES += -I$(RIOTBOARD)/common/wsn430/include
|
2017-11-16 15:14:31 +01:00
|
|
|
|
|
|
|
# configure the serial interface
|
2015-09-16 17:19:02 +02:00
|
|
|
PORT_LINUX ?= /dev/ttyUSB0
|
2016-02-13 21:51:08 +01:00
|
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*)))
|
2016-01-27 10:47:12 +01:00
|
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|
2015-09-16 17:19:02 +02:00
|
|
|
|
2017-11-16 15:14:31 +01:00
|
|
|
# configure the flash tool
|
2019-05-17 13:52:34 +02:00
|
|
|
FLASHER = mspdebug
|
2018-12-19 19:03:33 +01:00
|
|
|
FLASHFILE ?= $(HEXFILE)
|
|
|
|
FFLAGS = -d $(PORT) -j uif "prog $(FLASHFILE)"
|