mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
484 B
Makefile
18 lines
484 B
Makefile
# define the default port depending on the host OS
|
|
PORT_LINUX ?= /dev/ttyACM0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
|
# setup serial terminal
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|
|
|
|
# custom flasher to use with the bootloader
|
|
FLASHER = $(RIOTBOARD)/opencm904/dist/robotis-loader.py
|
|
DEBUGGER =
|
|
DEBUGSERVER =
|
|
|
|
FLASHFILE ?= $(BINFILE)
|
|
FFLAGS = $(PROG_DEV) $(FLASHFILE)
|
|
DEBUGGER_FLAGS =
|
|
|
|
# Skip the space needed by the embedded bootloader
|
|
ROM_OFFSET ?= 0x3000
|