Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
4477537cec | |||
44ba7df34f | |||
54744a06dd | |||
cefa81030b | |||
62052927d2 | |||
933a84f8ce | |||
db3c19ff2e | |||
ae9eb4cc6b | |||
89d40832c5 |
54
.github/workflows/providers/gitea-release.yml
vendored
54
.github/workflows/providers/gitea-release.yml
vendored
@ -46,32 +46,36 @@ jobs:
|
|||||||
|
|
||||||
- name: Prepare binaries
|
- name: Prepare binaries
|
||||||
run: |
|
run: |
|
||||||
|
# Ensure we're in the project root
|
||||||
|
cd $GITHUB_WORKSPACE
|
||||||
|
|
||||||
|
# Create SPIFFS directory if it doesn't exist
|
||||||
|
mkdir -p .pio/build/esp32dev/spiffs
|
||||||
|
|
||||||
|
# Copy firmware to SPIFFS directory
|
||||||
|
cp .pio/build/esp32dev/firmware.bin .pio/build/esp32dev/spiffs/firmware.bin
|
||||||
|
|
||||||
|
# Build new SPIFFS image with firmware included
|
||||||
|
pio run -t buildfs
|
||||||
|
|
||||||
cd .pio/build/esp32dev
|
cd .pio/build/esp32dev
|
||||||
|
|
||||||
# Create OTA binary (already has correct magic byte)
|
# Create release files
|
||||||
cp firmware.bin filaman.bin
|
cp spiffs.bin filaman_spiffs.bin
|
||||||
|
|
||||||
# Create a magic byte prepended binary for the bootloader
|
# Create full binary
|
||||||
echo -ne '\xE9' > bootloader_with_magic.bin
|
echo "Creating full binary..."
|
||||||
cat bootloader.bin >> bootloader_with_magic.bin
|
|
||||||
|
|
||||||
echo "Creating full binary with magic byte..."
|
|
||||||
esptool.py --chip esp32 merge_bin \
|
esptool.py --chip esp32 merge_bin \
|
||||||
--fill-flash-size 4MB \
|
--fill-flash-size 4MB \
|
||||||
--flash_mode dio \
|
--flash_mode dio \
|
||||||
--flash_freq 40m \
|
--flash_freq 40m \
|
||||||
--flash_size 4MB \
|
--flash_size 4MB \
|
||||||
-o filaman.bin \
|
-o filaman_full.bin \
|
||||||
0x0000 bootloader_with_magic.bin \
|
0x0000 bootloader.bin \
|
||||||
0x8000 partitions.bin \
|
0x8000 partitions.bin \
|
||||||
0x10000 firmware.bin \
|
0x10000 firmware.bin \
|
||||||
0x390000 spiffs.bin
|
0x390000 spiffs.bin
|
||||||
|
|
||||||
# Verify magic bytes
|
|
||||||
echo "Checking magic bytes:"
|
|
||||||
echo "Full binary first bytes:"
|
|
||||||
xxd -l 16 filaman.bin
|
|
||||||
|
|
||||||
# Verify file sizes
|
# Verify file sizes
|
||||||
echo "File sizes:"
|
echo "File sizes:"
|
||||||
ls -lh *.bin
|
ls -lh *.bin
|
||||||
@ -103,14 +107,20 @@ jobs:
|
|||||||
|
|
||||||
# Upload binaries
|
# Upload binaries
|
||||||
cd .pio/build/esp32dev
|
cd .pio/build/esp32dev
|
||||||
for file in filaman.bin; do
|
|
||||||
echo "Uploading $file..."
|
# Check if files exist before uploading
|
||||||
curl -k -s \
|
for file in filaman_spiffs.bin filaman_full.bin; do
|
||||||
-X POST \
|
if [ -f "$file" ]; then
|
||||||
-H "Authorization: token ${TOKEN}" \
|
echo "Uploading $file..."
|
||||||
-H "Content-Type: application/octet-stream" \
|
curl -k -s \
|
||||||
--data-binary "@$file" \
|
-X POST \
|
||||||
"${API_URL}/repos/${REPO}/releases/${RELEASE_ID}/assets?name=$file"
|
-H "Authorization: token ${TOKEN}" \
|
||||||
|
-H "Content-Type: application/octet-stream" \
|
||||||
|
--data-binary "@$file" \
|
||||||
|
"${API_URL}/repos/${REPO}/releases/${RELEASE_ID}/assets?name=$file"
|
||||||
|
else
|
||||||
|
echo "Warning: $file not found"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
echo "Failed to create release. Response:"
|
echo "Failed to create release. Response:"
|
||||||
|
56
.github/workflows/providers/github-release.yml
vendored
56
.github/workflows/providers/github-release.yml
vendored
@ -35,32 +35,36 @@ jobs:
|
|||||||
|
|
||||||
- name: Prepare binaries
|
- name: Prepare binaries
|
||||||
run: |
|
run: |
|
||||||
|
# Ensure we're in the project root
|
||||||
|
cd $GITHUB_WORKSPACE
|
||||||
|
|
||||||
|
# Create SPIFFS directory if it doesn't exist
|
||||||
|
mkdir -p .pio/build/esp32dev/spiffs
|
||||||
|
|
||||||
|
# Copy firmware to SPIFFS directory
|
||||||
|
cp .pio/build/esp32dev/firmware.bin .pio/build/esp32dev/spiffs/firmware.bin
|
||||||
|
|
||||||
|
# Build new SPIFFS image with firmware included
|
||||||
|
pio run -t buildfs
|
||||||
|
|
||||||
cd .pio/build/esp32dev
|
cd .pio/build/esp32dev
|
||||||
|
|
||||||
# Create OTA binary (already has correct magic byte)
|
# Create release files
|
||||||
cp firmware.bin filaman.bin
|
cp spiffs.bin filaman_spiffs.bin
|
||||||
|
|
||||||
# Create a magic byte prepended binary for the bootloader
|
# Create full binary
|
||||||
echo -ne '\xE9' > bootloader_with_magic.bin
|
echo "Creating full binary..."
|
||||||
cat bootloader.bin >> bootloader_with_magic.bin
|
|
||||||
|
|
||||||
echo "Creating full binary with magic byte..."
|
|
||||||
esptool.py --chip esp32 merge_bin \
|
esptool.py --chip esp32 merge_bin \
|
||||||
--fill-flash-size 4MB \
|
--fill-flash-size 4MB \
|
||||||
--flash_mode dio \
|
--flash_mode dio \
|
||||||
--flash_freq 40m \
|
--flash_freq 40m \
|
||||||
--flash_size 4MB \
|
--flash_size 4MB \
|
||||||
-o filaman.bin \
|
-o filaman_full.bin \
|
||||||
0x0000 bootloader_with_magic.bin \
|
0x0000 bootloader.bin \
|
||||||
0x8000 partitions.bin \
|
0x8000 partitions.bin \
|
||||||
0x10000 firmware.bin \
|
0x10000 firmware.bin \
|
||||||
0x390000 spiffs.bin
|
0x390000 spiffs.bin
|
||||||
|
|
||||||
# Verify magic bytes
|
|
||||||
echo "Checking magic bytes:"
|
|
||||||
echo "Full binary first bytes:"
|
|
||||||
xxd -l 16 filaman.bin
|
|
||||||
|
|
||||||
# Verify file sizes
|
# Verify file sizes
|
||||||
echo "File sizes:"
|
echo "File sizes:"
|
||||||
ls -lh *.bin
|
ls -lh *.bin
|
||||||
@ -83,7 +87,23 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
run: |
|
run: |
|
||||||
gh release create "${{ github.ref_name }}" \
|
# Check which files exist and create a list for upload
|
||||||
--title "Release ${{ steps.get_version.outputs.VERSION }}" \
|
cd .pio/build/esp32dev
|
||||||
--notes "${{ steps.changelog.outputs.CHANGES }}" \
|
FILES_TO_UPLOAD=""
|
||||||
.pio/build/esp32dev/filaman.bin
|
for file in filaman_spiffs.bin filaman_full.bin; do
|
||||||
|
if [ -f "$file" ]; then
|
||||||
|
FILES_TO_UPLOAD="$FILES_TO_UPLOAD .pio/build/esp32dev/$file"
|
||||||
|
else
|
||||||
|
echo "Warning: $file not found"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Create release with available files
|
||||||
|
if [ -n "$FILES_TO_UPLOAD" ]; then
|
||||||
|
gh release create "${{ github.ref_name }}" \
|
||||||
|
--title "Release ${{ steps.get_version.outputs.VERSION }}" \
|
||||||
|
--notes "${{ steps.changelog.outputs.CHANGES }}" \
|
||||||
|
$FILES_TO_UPLOAD
|
||||||
|
else
|
||||||
|
echo "Error: No files found to upload"
|
||||||
|
exit 1
|
20
CHANGELOG.md
20
CHANGELOG.md
@ -1,5 +1,25 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.2.91] - 2025-02-20
|
||||||
|
### Added
|
||||||
|
- add file existence checks before uploading binaries in release workflows
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- update webpages for version v1.2.91
|
||||||
|
|
||||||
|
|
||||||
|
## [1.2.90] - 2025-02-20
|
||||||
|
### Changed
|
||||||
|
- update webpages for version v1.2.90
|
||||||
|
- update Gitea and GitHub release workflows to include SPIFFS directory creation and firmware copying
|
||||||
|
|
||||||
|
|
||||||
|
## [1.2.89] - 2025-02-20
|
||||||
|
### Changed
|
||||||
|
- update webpages for version v1.2.89
|
||||||
|
- enhance OTA update process with SPIFFS support and improved error handling
|
||||||
|
|
||||||
|
|
||||||
## [1.2.88] - 2025-02-20
|
## [1.2.88] - 2025-02-20
|
||||||
### Changed
|
### Changed
|
||||||
- update webpages for version v1.2.88
|
- update webpages for version v1.2.88
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<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">v1.2.88</span></h1>
|
<h1>FilaMan<span class="version">v1.2.91</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<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">v1.2.88</span></h1>
|
<h1>FilaMan<span class="version">v1.2.91</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<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">v1.2.88</span></h1>
|
<h1>FilaMan<span class="version">v1.2.91</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<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">v1.2.88</span></h1>
|
<h1>FilaMan<span class="version">v1.2.91</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<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">v1.2.88</span></h1>
|
<h1>FilaMan<span class="version">v1.2.91</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<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">v1.2.88</span></h1>
|
<h1>FilaMan<span class="version">v1.2.91</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<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">v1.2.88</span></h1>
|
<h1>FilaMan<span class="version">v1.2.91</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.2.88"
|
version = "1.2.91"
|
||||||
|
|
||||||
[env:esp32dev]
|
[env:esp32dev]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
|
173
src/ota.cpp
173
src/ota.cpp
@ -20,81 +20,150 @@ void stopAllTasks() {
|
|||||||
Serial.println("All tasks stopped");
|
Serial.println("All tasks stopped");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void performStageTwo() {
|
||||||
|
if (!SPIFFS.begin(true)) {
|
||||||
|
Serial.println("Error: Could not mount SPIFFS for stage 2");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
File firmwareFile = SPIFFS.open("/firmware.bin", "r");
|
||||||
|
if (!firmwareFile) {
|
||||||
|
Serial.println("Error: Could not open firmware.bin from SPIFFS");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t firmwareSize = firmwareFile.size();
|
||||||
|
size_t maxAppSpace = (ESP.getFreeSketchSpace() - 0x1000) & 0xFFFFF000;
|
||||||
|
|
||||||
|
Serial.printf("Stage 2 - Firmware size: %u bytes\n", firmwareSize);
|
||||||
|
Serial.printf("Available space: %u bytes\n", maxAppSpace);
|
||||||
|
|
||||||
|
if (firmwareSize > maxAppSpace) {
|
||||||
|
Serial.printf("Error: Not enough space for firmware. Need %u bytes but only have %u bytes\n",
|
||||||
|
firmwareSize, maxAppSpace);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Update.begin(firmwareSize)) {
|
||||||
|
Update.printError(Serial);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t written = Update.writeStream(firmwareFile);
|
||||||
|
if (written != firmwareSize) {
|
||||||
|
Update.printError(Serial);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Update.end(true)) {
|
||||||
|
Update.printError(Serial);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
firmwareFile.close();
|
||||||
|
SPIFFS.remove("/firmware.bin"); // Cleanup
|
||||||
|
Serial.println("Stage 2 update successful, restarting...");
|
||||||
|
delay(500);
|
||||||
|
ESP.restart();
|
||||||
|
}
|
||||||
|
|
||||||
|
void checkForStagedUpdate() {
|
||||||
|
if (!SPIFFS.begin(true)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (SPIFFS.exists("/firmware.bin")) {
|
||||||
|
Serial.println("Found staged firmware update, initiating stage 2...");
|
||||||
|
performStageTwo();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void handleOTAUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final) {
|
void handleOTAUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final) {
|
||||||
|
static File stagingFile;
|
||||||
|
|
||||||
if (!index) {
|
if (!index) {
|
||||||
bool isFullImage = filename.endsWith(".bin");
|
bool isSpiffsUpdate = filename.endsWith("_spiffs.bin");
|
||||||
Serial.printf("Update Start: %s (type: %s)\n", filename.c_str(), isFullImage ? "full" : "OTA");
|
Serial.printf("Update Start: %s (type: %s)\n", filename.c_str(), isSpiffsUpdate ? "SPIFFS" : "OTA");
|
||||||
|
|
||||||
if (request->contentLength() == 0) {
|
if (request->contentLength() == 0) {
|
||||||
request->send(400, "application/json", "{\"status\":\"error\",\"message\":\"Invalid file size\"}");
|
request->send(400, "application/json", "{\"status\":\"error\",\"message\":\"Invalid file size\"}");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Berechne verfügbaren Speicherplatz
|
// Stop tasks before update
|
||||||
size_t updateSize = request->contentLength();
|
|
||||||
size_t maxSketchSpace = (ESP.getFreeSketchSpace() - 0x1000) & 0xFFFFF000;
|
|
||||||
|
|
||||||
Serial.printf("Update size: %u bytes\n", updateSize);
|
|
||||||
Serial.printf("Available space: %u bytes\n", maxSketchSpace);
|
|
||||||
|
|
||||||
if (updateSize > maxSketchSpace) {
|
|
||||||
Serial.printf("Error: Not enough space. Need %u bytes but only have %u bytes available\n",
|
|
||||||
updateSize, maxSketchSpace);
|
|
||||||
request->send(400, "application/json",
|
|
||||||
"{\"status\":\"error\",\"message\":\"Not enough space for update\"}");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!tasksAreStopped && (RfidReaderTask || BambuMqttTask || ScaleTask)) {
|
if (!tasksAreStopped && (RfidReaderTask || BambuMqttTask || ScaleTask)) {
|
||||||
stopAllTasks();
|
stopAllTasks();
|
||||||
tasksAreStopped = true;
|
tasksAreStopped = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure SPIFFS is ended before update
|
size_t updateSize = request->contentLength();
|
||||||
if (SPIFFS.begin()) {
|
|
||||||
SPIFFS.end();
|
if (isSpiffsUpdate) {
|
||||||
}
|
if (!SPIFFS.begin(true)) {
|
||||||
|
|
||||||
bool success;
|
|
||||||
if (isFullImage) {
|
|
||||||
success = Update.begin(updateSize, U_FLASH);
|
|
||||||
} else {
|
|
||||||
if (data[0] != 0xE9) {
|
|
||||||
Serial.printf("Wrong magic byte: 0x%02X (expected 0xE9)\n", data[0]);
|
|
||||||
request->send(400, "application/json",
|
request->send(400, "application/json",
|
||||||
"{\"status\":\"error\",\"message\":\"Invalid firmware format\"}");
|
"{\"status\":\"error\",\"message\":\"Could not mount SPIFFS\"}");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Start SPIFFS update
|
||||||
|
if (!Update.begin(updateSize, U_SPIFFS)) {
|
||||||
|
Update.printError(Serial);
|
||||||
|
request->send(400, "application/json",
|
||||||
|
"{\"status\":\"error\",\"message\":\"SPIFFS update initialization failed\"}");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Regular OTA update
|
||||||
|
stagingFile = SPIFFS.open("/firmware.bin", "w");
|
||||||
|
if (!stagingFile) {
|
||||||
|
request->send(400, "application/json",
|
||||||
|
"{\"status\":\"error\",\"message\":\"Could not create staging file\"}");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
success = Update.begin(updateSize);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!success) {
|
|
||||||
Update.printError(Serial);
|
|
||||||
request->send(400, "application/json",
|
|
||||||
"{\"status\":\"error\",\"message\":\"Update initialization failed\"}");
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Update.write(data, len) != len) {
|
if (stagingFile) {
|
||||||
Update.printError(Serial);
|
// Stage 1: Write to SPIFFS
|
||||||
request->send(400, "application/json",
|
if (stagingFile.write(data, len) != len) {
|
||||||
"{\"status\":\"error\",\"message\":\"Write failed\"}");
|
stagingFile.close();
|
||||||
return;
|
SPIFFS.remove("/firmware.bin");
|
||||||
|
request->send(400, "application/json",
|
||||||
|
"{\"status\":\"error\",\"message\":\"Write to SPIFFS failed\"}");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Direct SPIFFS update
|
||||||
|
if (Update.write(data, len) != len) {
|
||||||
|
Update.printError(Serial);
|
||||||
|
request->send(400, "application/json",
|
||||||
|
"{\"status\":\"error\",\"message\":\"Write failed\"}");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (final) {
|
if (final) {
|
||||||
if (!Update.end(true)) {
|
if (stagingFile) {
|
||||||
Update.printError(Serial);
|
// Finish Stage 1
|
||||||
request->send(400, "application/json",
|
stagingFile.close();
|
||||||
"{\"status\":\"error\",\"message\":\"Update failed\"}");
|
Serial.println("Stage 1 complete - firmware staged in SPIFFS");
|
||||||
return;
|
request->send(200, "application/json",
|
||||||
|
"{\"status\":\"success\",\"message\":\"Update staged successfully! Starting stage 2...\"}");
|
||||||
|
performStageTwo();
|
||||||
|
} else {
|
||||||
|
// Finish direct SPIFFS update
|
||||||
|
if (!Update.end(true)) {
|
||||||
|
Update.printError(Serial);
|
||||||
|
request->send(400, "application/json",
|
||||||
|
"{\"status\":\"error\",\"message\":\"Update failed\"}");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Serial.println("SPIFFS update successful, restarting...");
|
||||||
|
request->send(200, "application/json",
|
||||||
|
"{\"status\":\"success\",\"message\":\"SPIFFS update successful! Device will restart...\",\"restart\":true}");
|
||||||
|
delay(500);
|
||||||
|
ESP.restart();
|
||||||
}
|
}
|
||||||
Serial.println("Update successful, restarting...");
|
|
||||||
request->send(200, "application/json",
|
|
||||||
"{\"status\":\"success\",\"message\":\"Update successful! Device will restart...\",\"restart\":true}");
|
|
||||||
delay(500);
|
|
||||||
ESP.restart();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user