Part Number: MSP430FR5994
Other Parts Discussed in Thread: AFE4404
Tool/software: Code Composer Studio
I am working with an MSP430FR5994 microcontroller. Development platform/environment used: CCS 6.2.
For Collecting an analyzing data, I need to use large size block of data, which cannot fit in the RAM memory. So I would like to move them to FRAM memory.
I had been reviewed in detail the corresponding documentation: slaa628, slau132q 5.11.20 and slaa685 plus all forum entries I coupd find regarding to this issue.
FRAM_VARIABLES
{
*(*:greenArray)
} > FRAM
In main.c:
long greenArray [256] = {0};
Without a accessing the block of data, the program compile, load and run without a glitch. But as soon as I insert this code to the initialization section, the program fail to run though properly compiled and loaded.
for (j=0; j<256; j++)
{
greenArray[j]=0;
}
Could you help me please what should be done to make this solution working?
The #pragma NOINIT solution unfortunately has the same result.