From e7fbbd0a193f25ddc5ac6efd1eb73d4e90d3df6a Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Sun, 19 Dec 2021 06:37:21 +0100 Subject: [PATCH] correct manifest.json example (#146) --- README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 113bb97..65653db 100644 --- a/README.md +++ b/README.md @@ -19,28 +19,34 @@ Manifest definition: { "chipFamily": "ESP32", "parts": [ - { "path": "bootloader.bin", "offset": 4096 }, + { "path": "bootloader_dout_40m.bin", "offset": 4096 }, { "path": "partitions.bin", "offset": 32768 }, - { "path": "ota.bin", "offset": 57344 }, - { "path": "firmware.bin", "offset": 65536 } + { "path": "boot_app0.bin", "offset": 57344 }, + { "path": "esp32.bin", "offset": 65536 } ] }, { "chipFamily": "ESP32-C3", "parts": [ - { "path": "esp32-c3.bin", "offset": 0 }, + { "path": "bootloader_dout_40m.bin", "offset": 0 }, + { "path": "partitions.bin", "offset": 32768 }, + { "path": "boot_app0.bin", "offset": 57344 }, + { "path": "esp32-c3.bin", "offset": 65536 } ] }, { "chipFamily": "ESP32-S2", "parts": [ - { "path": "esp32-s2.bin", "offset": 0 }, + { "path": "bootloader_dout_40m.bin", "offset": 4096 }, + { "path": "partitions.bin", "offset": 32768 }, + { "path": "boot_app0.bin", "offset": 57344 }, + { "path": "esp32-s2.bin", "offset": 65536 } ] }, { "chipFamily": "ESP8266", "parts": [ - { "path": "esp8266.bin", "offset": 0 }, + { "path": "esp8266.bin", "offset": 0 } ] } ]