From 33d628143224b3437910a1eae92cecf164a5672b Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Wed, 2 Aug 2023 18:59:58 +0200 Subject: [PATCH] cpu/esp32/esp-idf: add LCD driver of ESP-IDF --- cpu/esp32/esp-idf/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cpu/esp32/esp-idf/Makefile b/cpu/esp32/esp-idf/Makefile index baf5c761a6..47090883ea 100644 --- a/cpu/esp32/esp-idf/Makefile +++ b/cpu/esp32/esp-idf/Makefile @@ -36,6 +36,10 @@ ifneq (,$(filter esp_idf_heap,$(USEMODULE))) DIRS += heap endif +ifneq (,$(filter esp_idf_lcd,$(USEMODULE))) + DIRS += lcd +endif + ifneq (,$(filter esp_idf_nvs_flash,$(USEMODULE))) DIRS += nvs_flash endif