Commit c81e2ff6 authored by Erwan Gouriou's avatar Erwan Gouriou Committed by Carles Cufi
Browse files

boards: nucleo_wba52cg: Add a user flash partition



This partition could be used by application.

Signed-off-by: default avatarErwan Gouriou <erwan.gouriou@st.com>
parent f6555aa9
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -133,3 +133,18 @@ stm32_lp_tick_source: &lptim1 {
&rng {
	status = "okay";
};

&flash0 {
	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

		/* Last 16K of flash: Min 2 sectors */
		storage_partition: partition@f8000 {
			label = "storage";
			reg = <0x000f8000 DT_SIZE_K(16)>;
		};

	};
};