mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
11 lines
384 B
Makefile
11 lines
384 B
Makefile
# set programming environment
|
|
OPENOCD_DEBUG_ADAPTER ?= dap
|
|
PROGRAMMER ?= openocd
|
|
|
|
# Set UICR.PSELRESET[0] and UICR.PSELRESET[1] registers at 0x10001200
|
|
# to pin P0.18 (0x12), which is connected to the onboard Reset button
|
|
OPENOCD_PRE_VERIFY_CMDS = -c 'flash fillw 0x10001200 0x00000012 2'
|
|
|
|
# use the common nrf52 config for the rest
|
|
include $(RIOTBOARD)/common/nrf52/Makefile.include
|