Skip to content

Commit b933577

Browse files
committed
fix: frdm_rw612_rw612: fix partition size
The sketch partition size was slightly overflowing the original "image-1" partition, causing corruption on the storage partition.
1 parent 76ed21d commit b933577

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

variants/frdm_rw612_rw612/frdm_rw612_rw612.overlay

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
w25q512jvfiq: w25q512jvfiq@0 {
1111
partitions {
1212
user_sketch: partition@323000 {
13-
label = "image-1";
14-
reg = <0x00323000 DT_SIZE_M(3)>;
13+
reg = <0x00323000 (DT_SIZE_M(3) - 0x3000)>;
1514
};
1615
};
1716
};

0 commit comments

Comments
 (0)