mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-23 13:33:49 +01:00
19 lines
427 B
Makefile
19 lines
427 B
Makefile
ifneq (,$(filter saul_default,$(USEMODULE)))
|
|
USEMODULE += saul_gpio
|
|
endif
|
|
|
|
ifneq (,$(filter mtd,$(USEMODULE)))
|
|
USEMODULE += mtd_spi_nor
|
|
endif
|
|
|
|
# default to using littlefs2 on the external flash
|
|
ifneq (,$(filter vfs_default,$(USEMODULE)))
|
|
USEPKG += littlefs2
|
|
USEMODULE += mtd
|
|
endif
|
|
|
|
USEMODULE += boards_common_adafruit-nrf52-bootloader
|
|
|
|
# include common nrf52 dependencies
|
|
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|