mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
8305390a05
cpu/$(CPU)/Makefile.features and cpu/$(CPU)/Makefile.dep are automatically included Part of moving CPU/CPU_MODEL definition to Makefile.features to have it available before Makefile.include.
21 lines
602 B
Makefile
21 lines
602 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
|
|
export 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
|