Other Parts Discussed in Thread: MSP430FR5969
I am trying to create a C++ project on the msp430fr5969 processor using Code Composer Studio Version: 6.1.2.00015. My project has the "Treat C files as C++" option enabled.
I am trying to use:
#pragma PERSISTENT(x)
unsigned int x;
and
#pragma NOINIT(x)
unsigned int x;
These don't seem to work for C++, is there an equivalent method for storing variables into FRAM?
Thank you.