ESP-IDF + 0/1 examples
SourceVu will show references to esp_https_ota() from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsRelatedReferences

Return value

- ESP_OK: OTA data updated, next reboot will use specified partition. - ESP_FAIL: For generic failure. - ESP_ERR_INVALID_ARG: Invalid argument - ESP_ERR_OTA_VALIDATE_FAILED: Invalid app image - ESP_ERR_NO_MEM: Cannot allocate memory for OTA operation. - ESP_ERR_FLASH_OP_TIMEOUT or ESP_ERR_FLASH_OP_FAIL: Flash write failed. - For other return codes, refer OTA documentation in esp-idf's app_update component.

Notes

This API handles the entire OTA operation, so if this API is being used then no other APIs from `esp_https_ota` component should be called. If more information and control is needed during the HTTPS OTA process, then one can use `esp_https_ota_begin` and subsequent APIs. If this API returns successfully, esp_restart() must be called to boot from the new firmware image.

References

from examples