Skip to content

Commit

Permalink
Update partition table
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
mathieucarbou authored Aug 31, 2024
1 parent c8e3777 commit 7542712
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 28 deletions.
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ extra_scripts =
custom_cacert_url = https://curl.se/ca/cacert.pem
; custom_cacert_url = https://raw.githubusercontent.com/adafruit/certificates/main/data/roots.pem

board_build.partitions = tools/partitions-4MB-safeboot.csv
board_build.partitions = tools/partitions-4MB-hex.csv
board_build.app_partition_name = app
board_build.filesystem = littlefs

Expand Down
7 changes: 7 additions & 0 deletions tools/partitions-4MB-dec.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Name ,Type ,SubType ,Offset ,Size ,Flags
nvs ,data ,nvs ,36K ,20K ,
otadata ,data ,ota ,56K ,8K ,
safeboot ,app ,factory ,64K ,640K ,
app ,app ,ota_0 ,704K ,3264K ,
fs ,data ,spiffs ,3968K ,64K ,
coredump ,data ,coredump ,4032K ,64K ,
7 changes: 7 additions & 0 deletions tools/partitions-4MB-hex.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Name ,Type ,SubType ,Offset ,Size ,Flags
nvs ,data ,nvs ,0x9000 ,0x5000 ,
otadata ,data ,ota ,0xE000 ,0x2000 ,
safeboot ,app ,factory ,0x10000 ,0xA0000 ,
app ,app ,ota_0 ,0xB0000 ,0x330000 ,
fs ,data ,spiffs ,0x3E0000 ,0x10000 ,
coredump ,data ,coredump ,0x3F0000 ,0x10000 ,
7 changes: 0 additions & 7 deletions tools/partitions-4MB-safeboot.csv

This file was deleted.

6 changes: 0 additions & 6 deletions tools/partitions-4MB.csv

This file was deleted.

7 changes: 7 additions & 0 deletions tools/partitions-8MB-dec.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Name ,Type ,SubType ,Offset ,Size ,Flags
nvs ,data ,nvs ,36K ,20K ,
otadata ,data ,ota ,56K ,8K ,
safeboot ,app ,factory ,64K ,640K ,
app ,app ,ota_0 ,704K ,7360K ,
fs ,data ,spiffs ,8064K ,64K ,
coredump ,data ,coredump ,8128K ,64K ,
7 changes: 7 additions & 0 deletions tools/partitions-8MB-hex.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Name ,Type ,SubType ,Offset ,Size ,Flags
nvs ,data ,nvs ,0x9000 ,0x5000 ,
otadata ,data ,ota ,0xE000 ,0x2000 ,
safeboot ,app ,factory ,0x10000 ,0xA0000 ,
app ,app ,ota_0 ,0xB0000 ,0x730000 ,
fs ,data ,spiffs ,0x7E0000 ,0x10000 ,
coredump ,data ,coredump ,0x7F0000 ,0x10000 ,
7 changes: 0 additions & 7 deletions tools/partitions-8MB-safeboot.csv

This file was deleted.

7 changes: 0 additions & 7 deletions tools/partitions-8MB.csv

This file was deleted.

0 comments on commit 7542712

Please sign in to comment.