OTA error with v3.3.2
Posted: Fri Jul 03, 2020 1:06 pm
Hello guys,
I have a hard time to perform OTA update over Ethernet by calling
function. The error reported is the following:
I dived inside esp_https_ota() function and realized that first stage of the process:
executes properly. The OTA gets struck in the next step:
Do you have any idea what might cause the issue? Could be the particular IDF version I am working with (3.3.2)? I don't remember we had the similar issue when we were working with 3.3.0.
Thaks in advance for your time and efforts.
Sincerely,
Bojan.
I have a hard time to perform OTA update over Ethernet by calling
Code: Select all
esp_err_t ret = esp_https_ota(&config);
Code: Select all
E (43018) TRANS_SSL: esp_tls_conn_read error, errno=No more processes
W (43018) HTTP_CLIENT: esp_transport_read returned:-26880 and errno:11
Code: Select all
esp_https_ota_begin(&ota_config, &https_ota_handle);
Code: Select all
while (1) {
err = esp_https_ota_perform(https_ota_handle);
if (err != ESP_ERR_HTTPS_OTA_IN_PROGRESS) {
break;
}
}
Thaks in advance for your time and efforts.
Sincerely,
Bojan.