mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ed4d871835
Automatically fetch the upstream version of cc2538-bsl.py instead of maintaining our own fork of the tool. fixes #13566
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# define the default port depending on the host OS
|
|
PORT_LINUX ?= /dev/ttyUSB1
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*)))
|
|
|
|
# setup serial terminal
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|
|
|
|
# Set default flash tool
|
|
PROGRAMMER ?= cc2538-bsl
|
|
|
|
# For backward compatibility
|
|
ifneq (,$(PORT_BSL))
|
|
$(warning Warning! PORT_BSL is deprecated use PROG_DEV)
|
|
PROG_DEV ?= $(PORT_BSL)
|
|
endif
|
|
|
|
ifeq ($(PROGRAMMER),cc2538-bsl)
|
|
FLASHFILE ?= $(HEXFILE)
|
|
FLASHER = $(RIOTBASE)/dist/tools/cc2538-bsl/cc2538-bsl.py
|
|
FLASHDEPS += $(FLASHER)
|
|
FFLAGS = -p "$(PROG_DEV)" --bootloader-invert-lines -e -w -v -b 460800 $(FLASHFILE)
|
|
RESET ?= $(RIOTTOOLS)/cc2538-bsl/cc2538-bsl.py
|
|
RESET_FLAGS ?= -p "$(PROG_DEV)" --bootloader-invert-lines
|
|
else ifeq ($(PROGRAMMER),jlink)
|
|
# Special flashing and reset scripts are required due to board hardware
|
|
export FLASH_ADDR = 0x200000
|
|
export JLINK_DEVICE = CC2538SF53
|
|
export JLINK_IF = JTAG
|
|
export JLINK_RESET_FILE = $(RIOTBOARD)/openmote-b/dist/hw_reset.seg
|
|
include $(RIOTMAKE)/tools/jlink.inc.mk
|
|
endif
|
|
|
|
OBJDUMPFLAGS += --disassemble --source --disassembler-options=force-thumb
|