I am working on controller having architecture of ARM CORTEX M4. Flash of controller contains 2 different applications Boot loader and Application. I want allocated RAM section via to store some data which I will share in both boot loader and application. Problem for me is when I jump from one application to another(Reset vector) my RAM section data from which I want to persist is getting cleared. As I am new to this kind of implementation, please guide me how can I achieve such implementation where RAM data will persist after soft reset or jump from one application to another.
Thanks in advance.