mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
13 lines
374 B
Makefile
13 lines
374 B
Makefile
# use common wsn430 includes
|
|
INCLUDES += -I$(RIOTBOARD)/common/wsn430/include
|
|
|
|
# configure the serial interface
|
|
PORT_LINUX ?= /dev/ttyUSB0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*)))
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|
|
|
|
# configure the flash tool
|
|
FLASHER = mspdebug
|
|
FLASHFILE ?= $(HEXFILE)
|
|
FFLAGS = -d $(PROG_DEV) -j uif "prog $(FLASHFILE)"
|