2021-11-10 11:10:45 +01:00
|
|
|
ifneq (,$(filter saul_default,$(USEMODULE)))
|
|
|
|
USEMODULE += saul_gpio
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter netdev_default,$(USEMODULE)))
|
|
|
|
USEMODULE += stm32_eth
|
|
|
|
endif
|
2021-12-22 16:08:54 +01:00
|
|
|
|
|
|
|
ifneq (,$(filter disp_dev,$(USEMODULE)))
|
|
|
|
FEATURES_REQUIRED += periph_ltdc
|
|
|
|
endif
|
2021-12-27 11:28:31 +01:00
|
|
|
|
|
|
|
ifneq (,$(filter touch_dev,$(USEMODULE)))
|
2022-01-20 09:12:16 +01:00
|
|
|
USEMODULE += ft5x06
|
2021-12-27 11:28:31 +01:00
|
|
|
endif
|
2023-07-21 17:06:57 +02:00
|
|
|
|
|
|
|
ifneq (,$(filter periph_fmc,$(USEMODULE)))
|
|
|
|
FEATURES_REQUIRED += periph_fmc_16bit
|
|
|
|
endif
|
2023-05-05 14:20:25 +02:00
|
|
|
|
|
|
|
# default to using fatfs on SD card
|
|
|
|
ifneq (,$(filter vfs_default,$(USEMODULE)))
|
|
|
|
USEMODULE += fatfs_vfs
|
|
|
|
USEMODULE += mtd
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter mtd,$(USEMODULE)))
|
|
|
|
USEMODULE += mtd_sdmmc_default
|
|
|
|
USEMODULE += periph_sdmmc
|
|
|
|
endif
|