mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
2a8c6526e3
For CI HIL purposes a reset is needed before running the test target. The remote board didn't assign a RESET variable to perform a reset, so it wasn't possible to call `make test` correctly. By calling the flash script without arguments, a reset is performed.
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
# define the cpu used by the RE-mote board
|
|
export CPU = cc2538
|
|
export CPU_MODEL = cc2538sf53
|
|
|
|
# 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 RESET = $(RIOTTOOLS)/cc2538-bsl/cc2538-bsl.py -p "$(PORT_BSL)"
|
|
export FLASHER = $(RIOTTOOLS)/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
|
|
export RESET_FLAGS = $(BINDIR)
|
|
endif
|
|
|
|
OFLAGS = --gap-fill 0xff
|
|
HEXFILE = $(BINFILE)
|
|
export DEBUGGER_FLAGS = $(BINDIR) $(ELFFILE)
|
|
export OBJDUMPFLAGS += --disassemble --source --disassembler-options=force-thumb
|
|
|
|
# include common remote includes
|
|
export INCLUDES += -I$(RIOTBOARD)/common/remote/include
|
|
|
|
# setup serial terminal
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|