You can use esp_http_client_read() for chunked download, it returns the bytes as int that have been read. With this you can continue a download after network issues have been resolved. I am not sure if extra steps need to be done on the server side. You have to add the "Range" ...
I've been playing around with the esp_http_client_example, specifically the https_with_url() function. My goal is it to download a JSON file, however I've noticed some strange behaviour wenn trying to read the date from esp_http_client_read(). For small files (~100bytes) this seems ...
why is esp_http_client_read returning 0 during an esp_ota? I am not sure why, but the esp_http_client_read will return 0 and even if i try 5 times to read again, it still returns 0 and then fails. Any suggestions on how to not fail or what to do in this case?
4G personal hotspot native OTA fail, blocked at esp_http_client_read() Steps to reproduce. idf v4.0.4 make native ota example connect 4G personal hotspot ota fail ... Debug Logs. st:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) configsip: 0, SPIWP:0xee clk_drv:0x00,q_dr...
You can use esp_http_client_read() for chunked download, it returns the bytes as int that have been read. With this you can continue a download after network issues have been resolved. I am not sure if extra steps need to be done on the server side. You have to add the "Range" ...
You can use esp_http_client_read() for chunked download, it returns the bytes as int that have been read. With this you can continue a download after network issues have been resolved. I am not sure if extra steps need to be done on the server side. You have to add the "Range" ...
Re: esp_http_client_read() returning wrong data PostbyBB5000»Fri Nov 06, 2020 3:15 pm Hi ESPers. About a year after the last message in this thread I happened to run into very that problem. Sorry to say, but the above mentioned solutions were not helpful. Updating the IDF or ev...