1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Openmote-cc2538: format flash start address as hex

Declaring the address in decimal format meant that it was being
interpreted as a decimal rather than hex address by the tooling
and the intermediate bash arithmetic. This fixes that bug.
This commit is contained in:
danpetry 2019-03-19 15:44:25 +01:00
parent 905376eef8
commit f8bb42f787

View File

@ -12,7 +12,7 @@ export PROGRAMMER ?= cc2538-bsl
ifeq ($(PROGRAMMER),jlink)
# setup JLink for flashing
export JLINK_DEVICE := cc2538sf53
export FLASH_ADDR := 200000
export FLASH_ADDR := 0x200000
export JLINK_IF := JTAG
export TUI := 1
include $(RIOTMAKE)/tools/jlink.inc.mk