mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
# Define the cpu used by the CC2538DK board:
|
|
export CPU = cc2538
|
|
export CPU_MODEL ?= cc2538nf53
|
|
|
|
# the SmartRF06 Evaluation Board serial numbers all begin with "06EB":
|
|
export PROGRAMMER_SERIAL ?= 06EB
|
|
|
|
# setup serial terminal
|
|
# the debug UART is always the second tty with the matching serial number:
|
|
PORT_LINUX ?= $(word 2,$(shell $(RIOTTOOLS)/usb-serial/find-tty.sh '^$(PROGRAMMER_SERIAL)'))
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*)))
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|
|
|
|
# setup emulator
|
|
include $(RIOTMAKE)/tools/renode.inc.mk
|
|
|
|
# debugger config
|
|
export DEBUGGER = $(RIOTBOARD)/$(BOARD)/dist/debug.sh
|
|
export DEBUGSERVER = JLinkGDBServer -device CC2538SF53
|
|
export RESET = $(RIOTBOARD)/$(BOARD)/dist/reset.sh
|
|
|
|
# Define the flash-tool and default port:
|
|
export PROGRAMMER ?= cc2538-bsl
|
|
|
|
ifeq ($(PROGRAMMER),cc2538-bsl)
|
|
export FLASHER = $(RIOTTOOLS)/cc2538-bsl/cc2538-bsl.py
|
|
export FFLAGS = -p "$(PORT)" -e -w -v $(HEXFILE)
|
|
else ifeq ($(PROGRAMMER),jlink)
|
|
export FLASHER = $(RIOTBOARD)/$(BOARD)/dist/flash.sh
|
|
export FFLAGS = $(BINDIR) $(HEXFILE)
|
|
endif
|
|
|
|
OFLAGS = --gap-fill 0xff
|
|
HEXFILE = $(BINFILE)
|
|
export DEBUGGER_FLAGS = $(BINDIR) $(ELFFILE)
|
|
export RESET_FLAGS = $(BINDIR)
|
|
|
|
export OBJDUMPFLAGS += --disassemble --source --disassembler-options=force-thumb
|