Part Number: MSP430FR2355
I have the following in some working code:
#pragma DATA_SECTION (default_Info,".info")
char default_Info[4] = {'1', '2', '3', '4'};
char permanent_Info[5] = {0xFF};
#pragma LOCATION (permanent_Info, 0x1810);
#pragma DATA_SECTION (fw_version, ".info");
char fw_version[] = {"V_1.0_F"};
If I look at the map file after a build the sections default_Info, fw_version, etc are there in the file.
I cut and paste this into a new project that I have been working on and build it but I cannot see these in the new map file nor can I see them in the debug Memory browser. I must be missing a setting in the project settings....Can someone tell me what I am doing wrong?
Thanks