Skip to content

Commit

Permalink
C33 QSPIformat added partition for kvstore
Browse files Browse the repository at this point in the history
  • Loading branch information
andreagilardoni committed Feb 18, 2025
1 parent 7d774d7 commit 58ef2a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/Storage/examples/QSPIFormat/QSPIFormat.ino
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ void setup() {

if (true == waitResponse()) {
MBRBlockDevice::partition(root, 1, 0x0B, 0, 5 * 1024 * 1024);
MBRBlockDevice::partition(root, 2, 0x0B, 5 * 1024 * 1024, 16 * 1024 * 1024);
MBRBlockDevice::partition(root, 2, 0x0B, 5 * 1024 * 1024, 14 * 1024 * 1024);
MBRBlockDevice::partition(root, 3, 0x0B, 14 * 1024 * 1024, 16 * 1024 * 1024);

int err = sys_fs.reformat(&sys_bd);
if (err) {
Expand Down

0 comments on commit 58ef2a2

Please sign in to comment.