12static const char *
const TAG =
"ota.arduino_libretiny";
14std::unique_ptr<ArduinoLibreTinyOTABackend>
make_ota_backend() {
return make_unique<ArduinoLibreTinyOTABackend>(); }
22 if (image_size == 0) {
23 image_size = UPDATE_SIZE_UNKNOWN;
25 bool ret = Update.begin(image_size, U_FLASH);
30 uint8_t error = Update.getError();
31 if (error == UPDATE_ERROR_SIZE)
34 ESP_LOGE(TAG,
"Begin error: %d", error);
41 this->md5_set_ =
true;
50 uint8_t error = Update.getError();
51 ESP_LOGE(TAG,
"Write error: %d", error);
59 if (Update.end(!this->md5_set_)) {
63 uint8_t error = Update.getError();
64 ESP_LOGE(TAG,
"End error: %d", error);
OTAResponseTypes begin(size_t image_size, OTAType ota_type=OTA_TYPE_UPDATE_APP)
void set_update_md5(const char *md5)
OTAResponseTypes write(uint8_t *data, size_t len)
@ OTA_RESPONSE_ERROR_ESP32_NOT_ENOUGH_SPACE
@ OTA_RESPONSE_ERROR_WRITING_FLASH
@ OTA_RESPONSE_ERROR_UNSUPPORTED_OTA_TYPE
@ OTA_RESPONSE_ERROR_UPDATE_END
@ OTA_RESPONSE_ERROR_UNKNOWN
std::unique_ptr< ArduinoLibreTinyOTABackend > make_ota_backend()