Part Number: MSP430FR6989
Tool/software: Code Composer Studio
Hi,
i would like to write A string which is
"MY NAME IS SOME THING "
directly to the fram locations not through the program which is fram_write
is there any possibility?
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.
Part Number: MSP430FR6989
Tool/software: Code Composer Studio
Hi,
i would like to write A string which is
"MY NAME IS SOME THING "
directly to the fram locations not through the program which is fram_write
is there any possibility?
Hi,
To write a byte to an address you can refer to this:
SYSCFG0 = FRWPPW;
*(uint8_t *) addr = data;
SYSCFG0 = FRWPPW | PFWP | DFWP;
The process is disable the FRAM protection, write a byte, and enable FRAM protection.
Pay attention that the address you want to write may have data already in.
Eason
By using location write, every time when power up the microcontroller these write to fram locations are excuted
**Attention** This is a public forum