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 ; https://docs.platformio.org/page/projectconf.html
[common] [common]
version = "1.2.58" version = "1.2.59"
[env:esp32dev] [env:esp32dev]
platform = espressif32 platform = espressif32

View File

@ -16,15 +16,19 @@ void handleOTAUpload(AsyncWebServerRequest *request, String filename, size_t ind
return; 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); Serial.printf("Not enough space: %u required\n", contentLength);
request->send(400, "application/json", "{\"status\":\"error\",\"message\":\"Not enough space available\"}"); request->send(400, "application/json", "{\"status\":\"error\",\"message\":\"Not enough space available\"}");
return; 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) { if (Update.write(data, len) != len) {
Update.printError(Serial); Update.printError(Serial);
request->send(400, "application/json", "{\"status\":\"error\",\"message\":\"Error writing update\"}"); request->send(400, "application/json", "{\"status\":\"error\",\"message\":\"Error writing update\"}");