From 2a8c6526e3b67ecf11f5d6cf01db6976c6181581 Mon Sep 17 00:00:00 2001 From: Francisco Acosta <fco.ja.ac@gmail.com> Date: Wed, 27 Jun 2018 14:30:41 +0200 Subject: [PATCH] boards/common/remote: add RESET variable 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. --- boards/common/remote/Makefile.include | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/boards/common/remote/Makefile.include b/boards/common/remote/Makefile.include index 1d0a85d11b..f09a6758f5 100644 --- a/boards/common/remote/Makefile.include +++ b/boards/common/remote/Makefile.include @@ -12,6 +12,7 @@ ifeq ($(PROGRAMMER),cc2538-bsl) 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) @@ -20,12 +21,12 @@ else ifeq ($(PROGRAMMER),jlink) 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 RESET_FLAGS = $(BINDIR) export OBJDUMPFLAGS += --disassemble --source --disassembler-options=force-thumb # include common remote includes -- GitLab