From a77b7761cd5f95ee178a6883ca74b5ed282d5a61 Mon Sep 17 00:00:00 2001 From: ede1998 Date: Sun, 30 Aug 2026 17:15:09 +0200 Subject: [PATCH] add custom flash partitions --- espflash.toml | 2 ++ partitions.csv | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 espflash.toml create mode 100644 partitions.csv diff --git a/espflash.toml b/espflash.toml new file mode 100644 index 0000000..d5b7a17 --- /dev/null +++ b/espflash.toml @@ -0,0 +1,2 @@ +[idf_format_args] +partition_table = "partitions.csv" \ No newline at end of file diff --git a/partitions.csv b/partitions.csv new file mode 100644 index 0000000..c3b956e --- /dev/null +++ b/partitions.csv @@ -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, + -- 2.39.5