From 933c9c35d88a8cba6af6379970d4b4c7876432a7 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 12 Jun 2021 13:53:00 -0700 Subject: [PATCH] Fix manifest example in README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 07a62ba..bde36e9 100644 --- a/README.md +++ b/README.md @@ -18,16 +18,16 @@ Manifest definition: "chipFamily": "ESP32", "improv": true, "parts": [ - { "filename": "bootloader.bin", "offset": 4096 }, - { "filename": "partitions.bin", "offset": 32768 }, - { "filename": "ota.bin", "offset": 57344 }, - { "filename": "firmware.bin", "offset": 65536 } + { "path": "bootloader.bin", "offset": 4096 }, + { "path": "partitions.bin", "offset": 32768 }, + { "path": "ota.bin", "offset": 57344 }, + { "path": "firmware.bin", "offset": 65536 } ] }, { "chipFamily": "ESP8266", "parts": [ - { "filename": "esp8266.bin", "offset": 0 }, + { "path": "esp8266.bin", "offset": 0 }, ] } ]