docs: update header title and improve SPIFFS update error handling

This commit is contained in:
Manuel Weiser 2025-02-22 17:31:28 +01:00
parent 0d34e1d718
commit 73e240e879
2 changed files with 10 additions and 9 deletions

View File

@ -24,7 +24,7 @@
<img src="/logo.png" alt="FilaMan Logo" class="logo"> <img src="/logo.png" alt="FilaMan Logo" class="logo">
<div class="logo-text"> <div class="logo-text">
<h1>FilaMan<span class="version"></span></h1> <h1>FilaMan<span class="version"></span></h1>
<h4>Hollo Lollo Trollo</h4> <h4>Filament Management Tool</h4>
</div> </div>
</div> </div>
<nav style="display: flex; gap: 1rem;"> <nav style="display: flex; gap: 1rem;">

View File

@ -403,19 +403,20 @@ void setupWebserver(AsyncWebServer &server) {
oledShowMessage("SPIFFS Update..."); oledShowMessage("SPIFFS Update...");
backupJsonConfigs(); backupJsonConfigs();
// SPIFFS update with pure binary data // Get the actual SPIFFS partition size from ESP32
if (!Update.begin((updateSize - 4), command)) { // Exclude header size const esp_partition_t *partition = esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_SPIFFS, NULL);
if (!partition) {
restoreJsonConfigs(); restoreJsonConfigs();
String errorMsg = String("Update begin failed: ") + Update.errorString(); String errorMsg = "SPIFFS partition not found";
request->send(400, "application/json", "{\"success\":false,\"message\":\"" + errorMsg + "\"}"); request->send(400, "application/json", "{\"success\":false,\"message\":\"" + errorMsg + "\"}");
return; return;
} }
// Skip initial header completely for SPIFFS update if (!Update.begin(partition->size, command)) {
if (index == 0 && len >= 4) { restoreJsonConfigs();
data += 4; String errorMsg = String("Update begin failed: ") + Update.errorString();
len -= 4; request->send(400, "application/json", "{\"success\":false,\"message\":\"" + errorMsg + "\"}");
updateSize -= 4; return;
} }
} else { } else {
oledShowMessage("Firmware Update..."); oledShowMessage("Firmware Update...");