Skip to content

Commit

Permalink
make: allow override of RESET for boards/common/remote
Browse files Browse the repository at this point in the history
  • Loading branch information
smlng committed Jun 6, 2019
1 parent 8766f8b commit 3482bfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions boards/common/remote/Makefile.include
Expand Up @@ -12,16 +12,16 @@ ifeq ($(PROGRAMMER),cc2538-bsl)
else ifeq ($(OS),Darwin)
PORT_BSL ?= $(PORT_DARWIN)
endif
RESET = $(RIOTTOOLS)/cc2538-bsl/cc2538-bsl.py -p "$(PORT_BSL)"
RESET ?= $(RIOTTOOLS)/cc2538-bsl/cc2538-bsl.py -p "$(PORT_BSL)"
FLASHER = $(RIOTTOOLS)/cc2538-bsl/cc2538-bsl.py
FFLAGS = -p "$(PORT_BSL)" -e -w -v -b 115200 $(FLASHFILE)
else ifeq ($(PROGRAMMER),jlink)
FLASHER = $(RIOTBOARD)/common/remote/dist/flash.sh
FFLAGS = $(BINDIR) $(FLASHFILE)
DEBUGGER = $(RIOTBOARD)/common/remote/dist/debug.sh
DEBUGSERVER = JLinkGDBServer -device CC2538SF53
RESET = $(RIOTBOARD)/common/remote/dist/reset.sh
RESET_FLAGS = $(BINDIR)
RESET ?= $(RIOTBOARD)/common/remote/dist/reset.sh
RESET_FLAGS ?= $(BINDIR)
endif

OFLAGS = --gap-fill 0xff
Expand Down

0 comments on commit 3482bfa

Please sign in to comment.