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
This commit is contained in:
Bodmer
2022-04-30 13:31:42 +01:00
committed by GitHub
parent fe5609e367
commit 24b0e88852

View File

@ -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