STM32WB55RCV6 RAM segments
Hi

If I understand correctly, this table in the datasheet says WB55RC family which I have a 256K flash type, should allow me to have 128K SRAM 64KB SRAM1 and 64KB SRAM 2
But the code that is generated with STM32CubeMX does not grant me all these sections:
First of all there are two .ld files which I would like to know what are they and how they are used?
One is STM32WB55RCVX_FLASH.ld with the following memory assignment:
MEMORY
{
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 256K
RAM1 (xrw) : ORIGIN = 0x20000004, LENGTH = 0xFFFC // which is(64K)
RAM_SHARED (xrw) : ORIGIN = 0x20030000, LENGTH = 10K
}
The other one is STM32WB55RCVX_RAM.ld with the following memory assignment:
MEMORY
{
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 64K
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 256K
}
What do I have to do to have more RAM ?
[Also in the labels that I am expected to assign for the post in the forum, there is no STM32WB family]
