Bump ESP Web Flasher to 5.10 (#200)

This commit is contained in:
Paulus Schoutsen 2022-03-23 08:52:01 -07:00 committed by GitHub
parent 7c7618c372
commit d42bae9f23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 5 deletions

View File

@ -43,6 +43,15 @@ Manifest definition:
{ "path": "esp32-s2.bin", "offset": 65536 } { "path": "esp32-s2.bin", "offset": 65536 }
] ]
}, },
{
"chipFamily": "ESP32-S3",
"parts": [
{ "path": "bootloader_dout_40m.bin", "offset": 4096 },
{ "path": "partitions.bin", "offset": 32768 },
{ "path": "boot_app0.bin", "offset": 57344 },
{ "path": "esp32-s3.bin", "offset": 65536 }
]
},
{ {
"chipFamily": "ESP8266", "chipFamily": "ESP8266",
"parts": [ "parts": [

View File

@ -337,9 +337,9 @@
Manifests describe the firmware that you want to offer the user to Manifests describe the firmware that you want to offer the user to
install. It allows specifying different builds for the different types install. It allows specifying different builds for the different types
of ESP devices. Current supported chip families are of ESP devices. Current supported chip families are
<code>ESP8266</code>, <code>ESP32</code>, <code>ESP32-C3</code> and <code>ESP8266</code>, <code>ESP32</code>, <code>ESP32-C3</code>,
<code>ESP32-S2</code>. The correct build will be automatically selected <code>ESP32-S2</code> and <code>ESP32-S3</code>. The correct build will
based on the type of the connected ESP device. be automatically selected based on the type of the connected ESP device.
</p> </p>
<pre> <pre>
{ {

View File

@ -28,7 +28,7 @@
"@material/mwc-formfield": "^0.25.3", "@material/mwc-formfield": "^0.25.3",
"@material/mwc-icon-button": "^0.25.3", "@material/mwc-icon-button": "^0.25.3",
"@material/mwc-textfield": "^0.25.3", "@material/mwc-textfield": "^0.25.3",
"esp-web-flasher": "^5.0.0", "esp-web-flasher": "^5.1.0",
"improv-wifi-serial-sdk": "^2.1.0", "improv-wifi-serial-sdk": "^2.1.0",
"lit": "^2.0.0", "lit": "^2.0.0",
"tslib": "^2.3.1" "tslib": "^2.3.1"

View File

@ -5,7 +5,7 @@ export interface Logger {
} }
export interface Build { export interface Build {
chipFamily: "ESP32" | "ESP8266" | "ESP32-S2" | "ESP32-C3"; chipFamily: "ESP32" | "ESP8266" | "ESP32-S2" | "ESP32-S3" | "ESP32-C3";
parts: { parts: {
path: string; path: string;
offset: number; offset: number;