boards: nucleo_wl55jc: make the storage partition bigger

Increase the storage partition size to 16kB, 8x2kB pages. This makes the
default config usable for testing subsystems that need multiple pages.

Signed-off-by: Fabio Baltieri <fabio.baltieri@gmail.com>
This commit is contained in:
Fabio Baltieri 2021-06-12 23:30:33 +01:00 committed by Anas Nashif
commit 4cd7781826

View file

@ -111,10 +111,13 @@
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
/* Set 2Kb of storage at the end of the 256Kb of flash */ /*
storage_partition: partition@3f800 { * Set 16kB of storage (8x2kB pages) at the end of the 256kB of
* flash.
*/
storage_partition: partition@3c000 {
label = "storage"; label = "storage";
reg = <0x0003f800 0x00000800>; reg = <0x0003c000 0x00004000>;
}; };
}; };
}; };