From e6c8c6bf09bc3df7006eb7ab6d15a57ea631122c Mon Sep 17 00:00:00 2001 From: Christian M Date: Sat, 10 Feb 2024 15:37:17 +0100 Subject: [PATCH] :memo::sparkles::wrench: add partitions config --- README.md | 2 +- partitions.csv | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 partitions.csv diff --git a/README.md b/README.md index 4b22065..d9247d9 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ cargo build ## Flashing ```bash -cargo espflash monitor +cargo espflash flash --release --monitor --partition-table partitions.csv ``` ## License diff --git a/partitions.csv b/partitions.csv new file mode 100644 index 0000000..3e90ed0 --- /dev/null +++ b/partitions.csv @@ -0,0 +1,4 @@ +# Name, Type, SubType, Offset, Size, Flags +nvs, data, nvs, 0x9000, 0x6000, +phy_init, data, phy, 0xf000, 0x1000, +factory, app, factory, 0x10000, 2M, \ No newline at end of file