From 24b0e88852399690a42cbec18e16e6ae7aaa5a49 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sat, 30 Apr 2022 13:31:42 +0100 Subject: [PATCH] ESP32 C3 and S3 support tested ESP32 C3 tested with SPI (8 bit parallel probably works - TBC) ESP32 S3 tested with SPI and 8 bit parallel --- TFT_eSPI.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TFT_eSPI.cpp b/TFT_eSPI.cpp index 114b378..5d24f5c 100644 --- a/TFT_eSPI.cpp +++ b/TFT_eSPI.cpp @@ -8,7 +8,7 @@ The larger fonts are Run Length Encoded to reduce their size. - +f Created by Bodmer 2/12/16 Last update by Bodmer 20/03/20 ****************************************************/ @@ -18,9 +18,9 @@ #if defined (ESP32) #if defined(CONFIG_IDF_TARGET_ESP32S3) - #include "Processors/TFT_eSPI_ESP32_S3.c" + #include "Processors/TFT_eSPI_ESP32_S3.c" // Tested with SPI and 8 bit parallel #elif defined(CONFIG_IDF_TARGET_ESP32C3) - #include "Processors/TFT_eSPI_ESP32_C3.c" + #include "Processors/TFT_eSPI_ESP32_C3.c" // Tested with SPI (8 bit parallel will probably work too!) #else #include "Processors/TFT_eSPI_ESP32.c" #endif