add custom flash partitions #59

Merged
ede1998 merged 1 commits from flash-parts into main 2026-08-30 17:16:06 +02:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit a77b7761cd - Show all commits
+2
View File
@@ -0,0 +1,2 @@
[idf_format_args]
partition_table = "partitions.csv"
+9
View File
@@ -0,0 +1,9 @@
# ESP-IDF Partition Table
# Name,Type,SubType,Offset,Size,Flags
nvs,data,nvs,0x9000,0x6000,
phy_init,data,phy,0xf000,0x1000,
# We keep the default layout more or less. But here we add a partition for more data before our application
more_nvs,data,nvs,0x10000,0xfa000,
# no offset given -> tool infers it for us
factory,app,factory, ,0xea6000,
1 # ESP-IDF Partition Table
2 # Name,Type,SubType,Offset,Size,Flags
3 nvs,data,nvs,0x9000,0x6000,
4 phy_init,data,phy,0xf000,0x1000,
5 # We keep the default layout more or less. But here we add a partition for more data before our application
6 more_nvs,data,nvs,0x10000,0xfa000,
7 # no offset given -> tool infers it for us
8 factory,app,factory, ,0xea6000,