Hi Team, I'm using a STM32L4R5 and am wanting to store variables in SRAM2 as static variables so that they hold their value while the micro is in standby mode with SRAM2 retention enabled. What am I missing?
I've followed every tutorial/thread that i've been able to find but cannot get this to work. I've set: RAM2 (xrw) : ORIGIN = 0x20030000, LENGTH = 64Kand .ram2_bss : { . = ALIGN(4); *(.ram2_bss) *(.ram2_bss*) } >RAM2In STM32L4R5ZITX_FLASH.ld and defi...