mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
c010f59b8c
- OS := $(shell uname) is already declared in `Makefile.include` re-declaring it means it will be re-evalauted multiple times uselessly.
32 lines
1010 B
Makefile
32 lines
1010 B
Makefile
# define the default flash-tool
|
|
export PROGRAMMER ?= cc2538-bsl
|
|
|
|
ifeq ($(PROGRAMMER),cc2538-bsl)
|
|
ifeq ($(OS),Linux)
|
|
PORT_BSL ?= $(PORT_LINUX)
|
|
else ifeq ($(OS),Darwin)
|
|
PORT_BSL ?= $(PORT_DARWIN)
|
|
endif
|
|
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)
|
|
endif
|
|
|
|
OFLAGS = --gap-fill 0xff
|
|
FLASHFILE ?= $(BINFILE)
|
|
DEBUGGER_FLAGS = $(BINDIR) $(ELFFILE)
|
|
OBJDUMPFLAGS += --disassemble --source --disassembler-options=force-thumb
|
|
|
|
# include common remote includes
|
|
INCLUDES += -I$(RIOTBOARD)/common/remote/include
|
|
|
|
# setup serial terminal
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|