Open Patsjemoe opened 3 months ago
@lucasssvaz can you please check and help triage this issue? Thanks
Issue is in the TFT_eSPI
library that is not yet compatible with Arduino v3. Please @Patsjemoe go file an issue there (or chime in one already opened by someone else)
Hi, In the datasheet, I found a change in SPI_MOSI_DLEN_REG to SPI_MS_DLEN_REG, but this change was already implemented in the TFT_eSPI. Arduino V3 must have made more changes, specifically related to the SPI command section. Can you confirm what changes have been made, so a search for the problem will be easier . thanks in advance best regards Ludo
On Mon, 5 Aug 2024 at 16:20, Me No Dev @.***> wrote:
Issue is in the TFT_eSPI library that is not yet compatible with Arduino v3. Please @Patsjemoe https://github.com/Patsjemoe go file an issue there (or chime in one already opened by someone else)
— Reply to this email directly, view it on GitHub https://github.com/espressif/arduino-esp32/issues/10115#issuecomment-2269198660, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMMBAJVKCGR3HMZF6ZT63CLZP6C4PAVCNFSM6AAAAABL7ZMCAOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENRZGE4TQNRWGA . You are receiving this because you were mentioned.Message ID: @.***>
Hi, I also tried V2.017 which shows the same error, and read in some links that V2.015 and 2.016 also have the problem. Can you confirm where I can find details on the changes made from V2.014 to V2.015 specifically related to SPI. thanks regards Ludo
This has been a long standing issue - since v2.0.15 was released. Perhaps this hack will help to understand the issue:
https://github.com/Bodmer/TFT_eSPI/issues/3384#issuecomment-2211470238
There was apparently a change made to how the SPI ports are assigned in v2.0.15 and later core versions.
Hi Jim, I think I found a solution to the problem, and posted this in TFT_eSPI. But since it is started with 2.0.15, something in that board library must have changed. In ESP32 technical reference manual, you can find FSPI, VSPI, HSPI, but these terms do not show up in the ESP32-S3 version, there it is SPI1, SPI2, SPI3, so I suspect that in the setup, changes related to these terms must have occured. regards Ludo
On Wed, 7 Aug 2024 at 09:42, Jim Drew @.***> wrote:
This has been a long standing issue - since v2.0.15 was released. Perhaps this hack will help to understand the issue:
Bodmer/TFT_eSPI#3384 (comment) https://github.com/Bodmer/TFT_eSPI/issues/3384#issuecomment-2211470238
— Reply to this email directly, view it on GitHub https://github.com/espressif/arduino-esp32/issues/10115#issuecomment-2272828653, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMMBAJTTFSPS4ULUADHSF3LZQHFW5AVCNFSM6AAAAABL7ZMCAOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENZSHAZDQNRVGM . You are receiving this because you were mentioned.Message ID: @.***>
The issue is in IDF code. The Macros for REG_SPI_BASE
are wrong there.
Every lib using this info fails.
The mentioned working core 2.0.14 is based on an other older IDF version, where this info was completely missing. Many 3rd party libs defined this value themselves. This approach is not working anymore.
To solve the issue without hacky workarounds, IDF wrong definition needs to be corrected. It is the same issue as in https://github.com/espressif/arduino-esp32/issues/9618
It might be handy if someone can just post exactly what changes are needed to the IDF files so we can manually fix this issue, and also let the Espressif team know.
@JimDrewGH Did you follow the link mentioned the post before yours? Everything mentioned there what's wrong and needs to be changed in IDF
@lucasssvaz do you know if this was fixed already in ESP-IDF?
Checked the S3 entry https://github.com/espressif/esp-idf/blob/632e0c2a9fc7c754db4135dabb67f7fc6aa9fb87/components/soc/esp32s3/include/soc/soc.h#L37
still not correct. A working solution for the S3 would be for example #define REG_SPI_BASE(i) (((i)==2) ? (DR_REG_SPI2_BASE) : (DR_REG_SPI0_BASE - ((i) * 0x1000))) // GPSPI2 and GPSPI3
Board
ESP32S3 DEVKitC-1
Device Description
none
Hardware Configuration
ILI9486 3.5" TFT
Version
v3.0.4
IDE Name
Arduino 2.3.2
Operating System
windows10
Flash frequency
QIO80mhz
PSRAM enabled
no
Upload speed
115200
Description
Guru Meditation Error: Core 1 panic'ed, problem happening on Esp32S3, not on esp32wroom32 problem is pointing to SPI write command(in TFT_eSPI::writecommand(unsigned char)) with board package >2.0.14......downgrading to 2.0.14 solved the problem, so my question is to correct the later /latest version 3.0.4
Sketch
Debug Message
Other Steps to Reproduce
No response
I have checked existing issues, online documentation and the Troubleshooting Guide