1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 00:12:44 +01:00
RIOT/boards/common/nrf51/Makefile.include
Alexandre Abadie 9363f077d6
boards: don't export globally OPENOCD_CONFIG
The variable is already exported to required target in openocd.inc.mk
2020-02-24 10:04:11 +01:00

21 lines
595 B
Makefile

# setup serial terminal
include $(RIOTMAKE)/tools/serial.inc.mk
# include common nrf51 headers
INCLUDES += -I$(RIOTBOARD)/common/nrf51/include
# use alternative xtimer mapping if applicable
ifneq (,$(filter nimble,$(USEPKG)))
CFLAGS += -DBOARD_NRF51_XTIMER_ALT
endif
ifeq ($(PROGRAMMER),openocd)
# use common openocd configuration for nrf51
OPENOCD_CONFIG = $(RIOTBOARD)/common/nrf51/dist/openocd.cfg
include $(RIOTMAKE)/tools/openocd.inc.mk
else ifeq ($(PROGRAMMER),jlink)
# setup JLink for flashing
export JLINK_DEVICE := nrf51822
include $(RIOTMAKE)/tools/jlink.inc.mk
endif