Other Parts Discussed in Thread: ENERGIA
Hello,
Can anyone here provide me the links or codes for read and write examples or demo codes for MSP430FR6989 FRAM on energia...
Thank you
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.
Hello,
Can anyone here provide me the links or codes for read and write examples or demo codes for MSP430FR6989 FRAM on energia...
Thank you
Hi,
you can do that:
/* FRAM Demo Access and update data stored in FRAM */ uint16_t Buffer[100] PLACE_IN_FRAM; void setup() { //Initialize serial and wait for port to open: Serial.begin(9600); // prints title with ending line break Serial.println("FRAM Demo"); if (Buffer[0] == 0xFFFF) { Buffer[0] = 0; } } void loop() { Serial.println(Buffer[0], HEX); delay(1000); Buffer[0] += 1; }
Regards,
Stefan
**Attention** This is a public forum