Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 58ef2a2

Browse files
committedFeb 18, 2025
C33 QSPIformat added partition for kvstore
1 parent 7d774d7 commit 58ef2a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎libraries/Storage/examples/QSPIFormat/QSPIFormat.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ void setup() {
5353

5454
if (true == waitResponse()) {
5555
MBRBlockDevice::partition(root, 1, 0x0B, 0, 5 * 1024 * 1024);
56-
MBRBlockDevice::partition(root, 2, 0x0B, 5 * 1024 * 1024, 16 * 1024 * 1024);
56+
MBRBlockDevice::partition(root, 2, 0x0B, 5 * 1024 * 1024, 14 * 1024 * 1024);
57+
MBRBlockDevice::partition(root, 3, 0x0B, 14 * 1024 * 1024, 16 * 1024 * 1024);
5758

5859
int err = sys_fs.reformat(&sys_bd);
5960
if (err) {

0 commit comments

Comments
 (0)
Please sign in to comment.