feat: update version to 1.2.59 and enhance OTA upload handling

This commit is contained in:
Manuel Weiser 2025-02-20 01:08:48 +01:00
parent 34ee9badea
commit 3070d75d07
2 changed files with 8 additions and 4 deletions

View File

@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html
[common]
version = "1.2.58"
version = "1.2.59"
[env:esp32dev]
platform = espressif32

View File

@ -16,15 +16,19 @@ void handleOTAUpload(AsyncWebServerRequest *request, String filename, size_t ind
return;
}
if (!Update.begin(contentLength)) {
// Determine if this is a full image (firmware + SPIFFS) or just firmware
bool isFullImage = (contentLength > 0x3D0000); // SPIFFS starts at 0x3D0000
if (!Update.begin(contentLength, isFullImage ? U_FLASH : U_SPIFFS)) {
Serial.printf("Not enough space: %u required\n", contentLength);
request->send(400, "application/json", "{\"status\":\"error\",\"message\":\"Not enough space available\"}");
return;
}
Serial.println("Update started");
Serial.println(isFullImage ? "Full image update started" : "Firmware update started");
}
// Write chunk to flash
if (Update.write(data, len) != len) {
Update.printError(Serial);
request->send(400, "application/json", "{\"status\":\"error\",\"message\":\"Error writing update\"}");