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.
Have you looked into the "LOCATION" pragma? Here is an application of it I use:
#pragma LOCATION( myPersistentData, myPersistentDataAddress )
#pragma RETAIN ( myPersistentData )
#pragma PERSISTENT( myPersistentData )
volatile uint8_T myPersistentData[ myPersistentDataSize ] = { 0 };
Bill.
I've been thinking about this more, and I have a few ideas and questions...
Can I just set the RTC calandar registers using JTAG?
I read that it is possible to read and write arbitrary memory addresses in RAM, flash, and peripherals through JTAG. This may be exactly what I want. There doesn't seem to be a lot of support for this, however. Can it be done from MSP430Flasher, or would I have to write an application based upon its source, which by the way is beautifully written and commented.
Can I use InfoA?
This probably the most main-stream and likely to succeed method. It would be substantially similar to your model, and fits with the article you linked.
JTAG Mailbox?
The JTAG Mailbox seems like a cool solution, but I don't see what support is available on the host side. I can't figure out what application I would even use to send a message to the JTAG Mailbox...
**Attention** This is a public forum