dts: stm32wb55Xg: fix sram size
STM32WB55xG MCUs include 256 KiB of SRAM split into three banks. The size of the main bank is 192 KiB, and not 96 KiB as it was specified in the device tree. This commit fixes the issue and also updates the definition of the NUCLEO-WB55 board, based on a STM32WB55RG MCU. Signed-off-by: Thomas Altenbach <taltenbach@witekio.com>
This commit is contained in:
parent
a07774eada
commit
61e250d511
|
@ -6,7 +6,7 @@ toolchain:
|
|||
- zephyr
|
||||
- gnuarmemb
|
||||
- xtools
|
||||
ram: 96
|
||||
ram: 192
|
||||
flash: 1024
|
||||
supported:
|
||||
- gpio
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
/ {
|
||||
sram0: memory@20000000 {
|
||||
reg = <0x20000000 DT_SIZE_K(96)>;
|
||||
reg = <0x20000000 DT_SIZE_K(192)>;
|
||||
};
|
||||
|
||||
soc {
|
||||
|
|
Loading…
Reference in a new issue