mirror of
https://github.com/Bodmer/TFT_eSPI.git
synced 2025-07-30 18:57:30 +02:00
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:
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
The larger fonts are Run Length Encoded to reduce their
|
The larger fonts are Run Length Encoded to reduce their
|
||||||
size.
|
size.
|
||||||
|
f
|
||||||
Created by Bodmer 2/12/16
|
Created by Bodmer 2/12/16
|
||||||
Last update by Bodmer 20/03/20
|
Last update by Bodmer 20/03/20
|
||||||
****************************************************/
|
****************************************************/
|
||||||
@ -18,9 +18,9 @@
|
|||||||
|
|
||||||
#if defined (ESP32)
|
#if defined (ESP32)
|
||||||
#if defined(CONFIG_IDF_TARGET_ESP32S3)
|
#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)
|
#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
|
#else
|
||||||
#include "Processors/TFT_eSPI_ESP32.c"
|
#include "Processors/TFT_eSPI_ESP32.c"
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user