Question
We have an STM32WL55 processor. The FLASH memory is divided for two cores: CM0PLUS FLASH (rx) : ORIGIN = 0x08020000, LENGTH = 128K CM4 FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K Everything works.
But we need to increase the memory for CM4, so we modified the files STM32WL55CCUX_FLASH.ld:
- CM0PLUS
FLASH (rx) : ORIGIN = 0x08030000, LENGTH = 64K
- CM4
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 192K
Unfortunately, it stopped working with this definition. Apparently something else needs to be adjusted or what are we doing wrong?
