Skip to content

Commit

Permalink
Fix partition scheme
Browse files Browse the repository at this point in the history
Using the default scheme for 4M ESP32-S3 without OTA.
  • Loading branch information
realcharmer committed Jun 17, 2024
1 parent 62c61a6 commit 5842189
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions partitions.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x5000
app0, app, factory, 0x10000, 0x3C0000
spiffs, data, spiffs, 0x3D0000, 0x30000
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x5000,
otadata, data, ota, 0xe000, 0x2000,
app0, app, ota_0, 0x10000, 0x200000,
spiffs, data, spiffs, 0x210000, 0x1E0000,
coredump, data, coredump, 0x3F0000, 0x10000,

0 comments on commit 5842189

Please sign in to comment.