StuartsProjects
StuartsProjects
I currently have no plans at present to make such a change. Whilst the change itself might not be seen as time consuming, it would have to be made for...
Thanks for the reply. Cant say I recall having similar problems with mixing SPI devices and libraries on the same SPI bus, LoRa devices, displays, SD cards etc. I just...
Futher comment. In the example code I posted, thereare reads to the SPI. interface, which is the default SPI interface for the ESP32S3 (same as VSPI ?) Does not the...
Thanks for the comment @zoelechat, however …….... If your using a LoRa device then you might assume the problem is something to do with the LoRa library or device, when...
> Try your display with mode 0 by adding > > ``` > #define TFT_SPI_MODE 0 > ``` In the simple example I posted above that change appears to solve...
The same problem, missing writes to the display, does not occur on an ESP32 NodeMCU when User_Setup.h is set for the default SPI mode. So where is the problem occuring,...
I was aware of the SPI.begin(SCK, MISO, MOSI, NSS) form. Are you saying that for your particular ESP32 board, SPI.Begin(); does not work but SPI.begin(18, 19 23, 5); does ?...
I will take a look at the suggestion, however it would require a fair bit of testing across all 3 libraries. Which Arduinos support multiple SPI ports in this way...
I really meant to say, is there a geniune Arduino that supports multiple SPI ports in this way ?
Indeed, I went back to basics and discovered the problem. One point of note, the way the ESP32S2 core is distributed seems to have changed; https://www.esp32.com/viewtopic.php?f=19&t=20364 I wonder how different...