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
#define FRAM_write_START 0x1800
void FRAMWrite(void);
void FRAMWrite(void)
{
unsigned int i=0;
volatile unsigned int ccc;
FRAM_read_ptr = &lib.count1;
FRAM_write_ptr = (unsigned int *)FRAM_write_START;
for ( i= 0; i<count; i++)
{
ccc = *FRAM_read_ptr++;
*FRAM_write_ptr++ = ccc;
}
__no_operation(); // SET BREAKPOINT HERE
}