Niccolo Gallarati
Niccolo Gallarati
I have encountered the same error and fixed as below, in file `transports/wiring.h` change line 432 from: `SPI.transfer((char*)s, n);` to `SPI.transfer(s, n);`
Hi, thank your your clear explanation. I agree with you that this approach seems to have poor performance and is using almost nothing of the capabilities of the FT8xx chipset....
Hi Rudolph, I was able to cobble together everything and get it compiled, however there are a couple of issues: 1) When running the initialization sequence I got from the...
[EVE_LVGL_Test_ESP32_PlatformIO.zip](https://github.com/RudolphRiedel/FT800-FT813/files/7824330/EVE_LVGL_Test_ESP32_PlatformIO.zip) Here you have the whole package built from your latest master source and Arduino example, which worked before modifications.
@davidjade thank you for your insights. Wish I knew ESP-IDF... I'm too far entrenched in the Arduino environment :| @RudolphRiedel I tried to retrieve all the parameters scattered around lvgl_esp32...
@RudolphRiedel I changed the function as follows, but still nothing displayed ``` void EVE_push_dma_buffer(uint32_t ftAddress, const uint8_t *my_data, uint32_t length) { Serial.print("Pushing ");Serial.print(length);Serial.println(" bytes"); spi_transaction_t EVE_spi_transaction = {0}; digitalWrite(EVE_CS, LOW);...
Hi, I'm on 2.0.4 and I just noticed this error as well, however I get the HTTP 200 message so the transmission is succesful after all. I have plenty of...
Here some more details with DCORE_DEBUG_LEVEL=5 ``` [121029][V][HTTPClient.cpp:252] beginInternal(): url: http://192.168.1.6/cmd?user=user [121030][D][HTTPClient.cpp:303] beginInternal(): protocol: http, host: 192.168.1.6 port: 80 url: /cmd?user=user [121042][D][HTTPClient.cpp:598] sendRequest(): request type: 'GET' redirCount: 0 [121090][D][HTTPClient.cpp:1156] connect():...
Hi, been using 2.0.1 so far with the proposed workaround (void function instead of non-void function). I can give it a try with 2.0.3-RC1 and let you know
Hi to all, I have this crash as well while sending a POST request to the wrong server, which returns a 404 error. I tried @wrybread hack but didn't solve...