mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-31 17:31:18 +01:00
21 lines
481 B
Makefile
21 lines
481 B
Makefile
ifneq (,$(filter saul_default,$(USEMODULE)))
|
|
USEMODULE += saul_gpio
|
|
USEMODULE += saul_bat_voltage
|
|
USEMODULE += ws281x
|
|
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
|