Jörgen van den Berg

Results 13 comments of Jörgen van den Berg

Thanks for this suggestion! I have changed the file: **Processors/TFT_eSPI_ESP32.h** and added **#include "driver/gpio.h"** ``` // Include processor specific header #include "soc/spi_reg.h" #include "driver/spi_master.h" #include "driver/gpio.h" #include "hal/gpio_ll.h" ``` Updated...

I have added `#include "driver/gpio.h"` to the file: Processors/TFT_eSPI_ESP32_S3.h ```C++ // Processor ID reported by getSetup() #define PROCESSOR_ID 0x32 // Include processor specific header #include "soc/spi_reg.h" #include "driver/spi_master.h" #include "hal/gpio_ll.h"...

I have worked around it. Placed **write-with-response** in a FreeRtos task and check the task is finished before to call it again...