fix: OTA update on x3 and progress bar on x4 and x3 (#1805)

Co-authored-by: Justin Mitchell <1875695+itsthisjustin@users.noreply.github.com>
This commit is contained in:
Justin Mitchell
2026-05-01 19:15:15 -04:00
committed by GitHub
co-authored by Justin Mitchell
parent 15ea7027df
commit ba4a361d64
5 changed files with 32 additions and 18 deletions
+2 -5
View File
@@ -200,15 +200,13 @@ bool OtaUpdater::isUpdateNewer() const {
const std::string& OtaUpdater::getLatestVersion() const { return latestVersion; }
OtaUpdater::OtaUpdaterError OtaUpdater::installUpdate() {
OtaUpdater::OtaUpdaterError OtaUpdater::installUpdate(ProgressCallback onProgress, void* ctx) {
if (!isUpdateNewer()) {
return UPDATE_OLDER_ERROR;
}
esp_https_ota_handle_t ota_handle = NULL;
esp_err_t esp_err;
/* Signal for OtaUpdateActivity */
render = false;
esp_http_client_config_t client_config = {
.url = otaUrl.c_str(),
@@ -241,8 +239,7 @@ OtaUpdater::OtaUpdaterError OtaUpdater::installUpdate() {
do {
esp_err = esp_https_ota_perform(ota_handle);
processedSize = esp_https_ota_get_image_len_read(ota_handle);
/* Sent signal to OtaUpdateActivity */
render = true;
if (onProgress) onProgress(ctx);
delay(100); // TODO: should we replace this with something better?
} while (esp_err == ESP_ERR_HTTPS_OTA_IN_PROGRESS);
+3 -5
View File
@@ -1,6 +1,5 @@
#pragma once
#include <functional>
#include <string>
class OtaUpdater {
@@ -10,9 +9,10 @@ class OtaUpdater {
size_t otaSize = 0;
size_t processedSize = 0;
size_t totalSize = 0;
bool render = false;
public:
using ProgressCallback = void (*)(void* ctx);
enum OtaUpdaterError {
OK = 0,
NO_UPDATE,
@@ -29,11 +29,9 @@ class OtaUpdater {
size_t getTotalSize() const { return totalSize; }
bool getRender() const { return render; }
OtaUpdater() = default;
bool isUpdateNewer() const;
const std::string& getLatestVersion() const;
OtaUpdaterError checkForUpdate();
OtaUpdaterError installUpdate();
OtaUpdaterError installUpdate(ProgressCallback onProgress = nullptr, void* ctx = nullptr);
};