mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
# define the cpu used by the Re-mote board
|
|
export CPU = cc2538
|
|
export CPU_MODEL = cc2538sf53
|
|
|
|
# define the default port depending on the host OS
|
|
PORT_LINUX ?= /dev/ttyUSB1
|
|
PORT_DARWIN ?= $(shell ls -1 /dev/tty.usbserial-* | head -n 2 | tail -n 1)
|
|
|
|
# define the default flash-tool
|
|
export PROGRAMMER ?= cc2538-bsl
|
|
|
|
ifeq ($(PROGRAMMER),cc2538-bsl)
|
|
OS := $(shell uname)
|
|
ifeq ($(OS),Linux)
|
|
PORT_BSL ?= $(PORT_LINUX)
|
|
else ifeq ($(OS),Darwin)
|
|
PORT_BSL ?= $(PORT_DARWIN)
|
|
endif
|
|
export FLASHER = python $(RIOTBASE)/dist/tools/cc2538-bsl/cc2538-bsl.py
|
|
export FFLAGS = -p "$(PORT_BSL)" -e -w -v -b 115200 $(HEXFILE)
|
|
else ifeq ($(PROGRAMMER),jlink)
|
|
export FLASHER = $(RIOTBOARD)/$(BOARD)/dist/flash.sh
|
|
export FFLAGS = $(BINDIR) $(HEXFILE)
|
|
export DEBUGGER = $(RIOTBOARD)/$(BOARD)/dist/debug.sh
|
|
export DEBUGSERVER = JLinkGDBServer -device CC2538SF53
|
|
export RESET = $(RIOTBOARD)/$(BOARD)/dist/reset.sh
|
|
endif
|
|
|
|
export OFLAGS = -O binary --gap-fill 0xff
|
|
export HEXFILE = $(ELFFILE:.elf=.bin)
|
|
export DEBUGGER_FLAGS = $(BINDIR) $(ELFFILE)
|
|
export RESET_FLAGS = $(BINDIR)
|
|
export OBJDUMPFLAGS += --disassemble --source --disassembler-options=force-thumb
|
|
|
|
# setup serial terminal
|
|
include $(RIOTBOARD)/Makefile.include.serial
|
|
|
|
# include cortex defaults
|
|
include $(RIOTBOARD)/Makefile.include.cortexm_common
|