Share variable between firmware and bootloader STM32WLE5JC
Hi all,
I'm working on STM32WLE5JC, I've develop very simple bootloader starting at flash memory at 0x08000000 for 20K. My booloader is simple just blink a user led and jump to the firmware.
Right now I'd like to have the possibility to jump to the bootloader from my appplication, I've read this very usefull article I've understand what I have to do, instead of jump to 0x1FFF000 jump to 0x0800000 (my flash memory where my own bootloader is saved).
But my question is, is it possible when I jump to the booloader from my application to set a variable somewhere and have access to it from my bootloader ? Maybe use RAM, because if I jump to booloader from application, my board will always power up so RAM content will be present, am I right ?
