boards: arm: move nucleo_g474re storage_partition to end of flash

Board/MCU has 512 KiB of flash (see stm32g474Xe.dtsi).

Signed-off-by: Nerijus Bendžiūnas <nerijus.bendziunas@gmail.com>
This commit is contained in:
Nerijus Bendžiūnas 2023-07-16 10:35:52 +03:00 committed by Anas Nashif
parent b8f7c81dd3
commit db00177e2e

View file

@ -174,10 +174,10 @@
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
/* Set 4Kb of storage at the end of the 128Kb of flash */ /* Set 4Kb of storage at the end of the 512Kb of flash */
storage_partition: partition@1f000 { storage_partition: partition@7f000 {
label = "storage"; label = "storage";
reg = <0x0001f000 DT_SIZE_K(4)>; reg = <0x0007f000 DT_SIZE_K(4)>;
}; };
}; };
}; };