Using ESP32S2 with recent update #2083
Replies: 1 comment
-
I wanted to add to this, this may be an issue with the latest PlatformIO (6.1.4) or ESP32 Arduino core (2.0.5) updates in case someone comes looking for this. The errors I was receiving included not being able to find "LittleFS.h" when included from TFT_eSPI_ESP32.h, despite the fact that it is clearly part of the Arduino Core package. To push this issue to a time I can really dig into it, I've fixed my TFT_eSPI version to 2.4.76 in my platform.ini file (lib_deps = bodmer/[email protected]) platform = espressif32 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
First of all, thank you for this amazing library - I have been using it on a personal project and can't imagine where I would be without it!
I just updated my project to the latest TFT_eSPI..
This commit seems to have broken a bit of compatibility with ESP32S2
d1bb18b
I've been able to get it to work by changing line 138 of TFT_eSPI_ESP32.h to
#if defined(CONFIG_IDF_TARGET_ESP32) || defined(CONFIG_IDF_TARGET_ESP32S2)
but of course, would prefer to be able to update the library without having to modify it.
Is there another intention of something I can include or define higher up to make use of SPIFFS and not break my build?
I have included "SPIFFS.h" before TFT_eSPI, I tried to define SPIFFS as fs:SPIFFSFS in my tft_setup.h, but none of that seems to do the trick. Any guidance on the "right" way to correct this without changing your code would be helpful!
Thank you
Beta Was this translation helpful? Give feedback.
All reactions