Hi Team,
I have an issue while writing to the FRAM in MSP430FR5043 microcontroller
If I write the data to the particular memory location the value remains unchanged.
Could anyone help me on this issue.
My code looks like this,
Note : I have used MSP430 driver library
uint32_t values[10] = {1,2,3,4,5,6,7,8,9,10};
FRAMCtl_A_disableWriteProtection();
FRAMCtl_A_write32(values,(uint32_t *) (0xCABA),sizeof(values)/sizeof(uint32_t));
FRAMCtl_A_enableWriteProtection()
I have also tried with MSP430 driver library example code. but the value is not writing into FRAM that I confirmed with CCS memory browser
The below image is my application code with memory browser view
;
Regards,
Sridhar.