Unverified Commit 24b0e888 authored by Bodmer's avatar Bodmer Committed by GitHub

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
parent fe5609e3
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment