mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
22 lines
505 B
Makefile
22 lines
505 B
Makefile
ifneq (,$(filter disp_dev,$(USEMODULE)))
|
|
USEMODULE += ili9341
|
|
endif
|
|
|
|
# Sets up configuration for openocd
|
|
USEMODULE += esp_jtag
|
|
|
|
# default to using fatfs on SD card
|
|
ifneq (,$(filter vfs_default,$(USEMODULE)))
|
|
USEMODULE += fatfs_vfs
|
|
USEMODULE += mtd
|
|
endif
|
|
|
|
ifneq (,$(filter mtd,$(USEMODULE)))
|
|
ifeq (,$(filter sdcard_spi,$(USEMODULE)))
|
|
# use mtd_sdmmc_default if sdcard_spi isn't explicitly enabled
|
|
USEMODULE += mtd_sdmmc_default
|
|
endif
|
|
endif
|
|
|
|
include $(RIOTBOARD)/common/esp32/Makefile.dep
|