1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/esp32s2-lilygo-ttgo-t8/Makefile.dep
2023-07-07 08:23:41 +02:00

25 lines
604 B
Makefile

ifneq (,$(filter esp32s2-lilygo-ttgo-t8-usb,$(USEMODULE)))
include $(RIOTBOARD)/common/makefiles/stdio_cdc_acm.dep.mk
endif
ifneq (,$(filter mtd,$(USEMODULE)))
USEMODULE += mtd_sdcard_default
endif
# default to using fatfs on SD card
ifneq (,$(filter vfs_default,$(USEMODULE)))
USEMODULE += fatfs_vfs
USEMODULE += mtd
endif
ifneq (,$(filter disp_dev,$(USEMODULE)))
USEMODULE += st7789
endif
ifneq (,$(filter st7735,$(USEMODULE)))
# use st7789 pseudomodule if st7735 is enabled to indicate that we use a ST7789
USEMODULE += st7789
endif
include $(RIOTBOARD)/common/esp32s2/Makefile.dep