This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Hi,
We are using MSP430FR5969. In that, I tried to write the data into FRAM memory. When I use array in the code it works fine. But when I replacing the array with pointers it doesn't work and it shows "Error: Attempted to read past the end of memory at 0xFFFFFFFF " in the expression tab for the assigned pointer variables.
So my question is,
1. Whether we can use pointers to store the data in FRAM memory?
2. How to replace the array by pointers to store the data in FRAM location?
3. How to set the boundary for segment 1 and segment 2?
4. How to increase the length of FRAM2?
Please find the below sample,
#pragma NOINIT(crest_value_array_3)
unsigned int crest_value_array_3[60]; // Declaration - This is what i assigned the variable to FRAM memory using array
#pragma NOINIT(crest_value_array_3)
unsigned int *crest_value_array_3; // Declaration - This is how i replaced the array using pointers
So, let me know whether my assignment was correct for pointers. And please respond for the above questions. Thanks
**Attention** This is a public forum