mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# Define the cpu used by the CC2538DK board:
|
|
export CPU = cc2538
|
|
export CPU_MODEL ?= cc2538nf53
|
|
|
|
# setup serial terminal
|
|
export PORT ?= /dev/ttyUSB1
|
|
include $(RIOTBOARD)/Makefile.include.serial
|
|
|
|
# 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 = python $(RIOTBASE)/dist/tools/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
|
|
|
|
export OFLAGS = -O binary --gap-fill 0xff
|
|
export HEXFILE = $(ELFFILE:.elf=.bin)
|
|
export DEBUGGER_FLAGS = $(BINDIR) $(ELFFILE)
|
|
export RESET_FLAGS = $(BINDIR)
|
|
|
|
export OBJDUMPFLAGS += --disassemble --source --disassembler-options=force-thumb
|
|
|
|
# export board specific includes to the global includes-listing
|
|
export INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include
|