Refactor OTA update handling and improve error reporting.
Added a CRC check to firmware uploads, streamlined OTA partition management, and replaced detailed slot states with a single unified state representation. Improved consistency in variable formatting, error handling, and code readability across multiple modules.
This commit is contained in:
@@ -1,22 +1,26 @@
|
|||||||
<style>
|
<style>
|
||||||
.basicnetworkkey{
|
.basicnetworkkey {
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
}
|
}
|
||||||
.basicnetworkvalue{
|
|
||||||
|
.basicnetworkvalue {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
.basicnetworkkeyssid1{
|
|
||||||
|
.basicnetworkkeyssid1 {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
.basicnetworkkeyssid2{
|
|
||||||
|
.basicnetworkkeyssid2 {
|
||||||
min-width: 50px;
|
min-width: 50px;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mqttkey{
|
.mqttkey {
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
}
|
}
|
||||||
.mqttvalue{
|
|
||||||
|
.mqttvalue {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -64,7 +68,7 @@
|
|||||||
<div class="mqttkey">
|
<div class="mqttkey">
|
||||||
MQTT Url
|
MQTT Url
|
||||||
</div>
|
</div>
|
||||||
<input class="mqttvalue" type="text" id="mqtt_url" placeholder="mqtt://192.168.1.1:1883">
|
<input class="mqttvalue" type="text" id="mqtt_url" placeholder="192.168.1.1:1883">
|
||||||
</div>
|
</div>
|
||||||
<div class="flexcontainer">
|
<div class="flexcontainer">
|
||||||
<div class="mqttkey">
|
<div class="mqttkey">
|
||||||
|
|||||||
Reference in New Issue
Block a user