From 31399e012aa3282aca7204ada01cdd69c43e6a95 Mon Sep 17 00:00:00 2001 From: Carlos Diaz Date: Tue, 4 Jan 2022 17:23:50 -0600 Subject: [PATCH] Make SPI3 not available for ESP32C3 The ESP32C3 device doesn't have SPI3 --- lvgl_tft/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lvgl_tft/Kconfig b/lvgl_tft/Kconfig index cebb344..5e349d5 100644 --- a/lvgl_tft/Kconfig +++ b/lvgl_tft/Kconfig @@ -475,7 +475,7 @@ menu "LVGL TFT Display controller" config LV_TFT_DISPLAY_SPI2_HOST bool "SPI2_HOST" config LV_TFT_DISPLAY_SPI3_HOST - bool "SPI3_HOST" + bool "SPI3_HOST" if !IDF_TARGET_ESP32C3 help Select the SPI Bus the TFT Display is attached to. endchoice