Other Parts Discussed in Thread: MSP-FET
Tool/software: Code Composer Studio
I have a few constants that I would like to store in Information memory, and populate them during product final assembly (after the board has been programmed). While trying to code this up, I am trying some dummy variables, but when I go into debug mode, the memory is still initialized to 0xFFFF for every 16 bit location. Does anyone have a suggestion for next steps in debugging? This is my first time using information memory, and I'm not sure why this might not be working.
Here is my code snippet:
// Fixed Product Data constants #pragma DATA_SECTION(szManfName, ".infoA") const char szManfName[32] = "Company Name"; #pragma DATA_SECTION(szDeviceName, ".infoA") const char szDeviceName[32] = "Bench Prototype";
This was written based on the document at the following link, and I am using the default linker file from CCS7, which appears to match up with the document. 
Thanks in advance!
Paul



