2018-08-23 17:20:22 +02:00
|
|
|
# This board uses a DAP-Link programmer
|
|
|
|
# Flashing support is provided through pyocd (default) and openocd.
|
|
|
|
# For openocd, a version built against the development branch and containing
|
|
|
|
# the support for nrf52 cpu is required.
|
|
|
|
PROGRAMMER ?= pyocd
|
2021-02-18 17:29:53 +01:00
|
|
|
# The board is not recognized automatically by pyocd, so the CPU target
|
|
|
|
# option is passed explicitly
|
|
|
|
PYOCD_FLASH_TARGET_TYPE ?= -t nrf52840
|
|
|
|
OPENOCD_DEBUG_ADAPTER = dap
|
2018-08-23 17:20:22 +02:00
|
|
|
|
2021-02-11 14:59:43 +01:00
|
|
|
# This board can also be flashed with pyocd
|
|
|
|
PROGRAMMERS_SUPPORTED += pyocd
|
|
|
|
|
2018-08-23 17:20:22 +02:00
|
|
|
include $(RIOTBOARD)/common/nrf52/Makefile.include
|