Hi,
I am migrating from IAR to Code composer, at the moment I am using the MSP430F2013 controller.
In IAR I had the following code:
#define CHANNEL_DEFAULT 3
#define CHANNEL_PTR_ADDR 0x1001
const unsigned char ChannelAddr @ CHANNEL_PTR_ADDR = CHANNEL_DEFAULT;
After building the value 3 was then located at address 0x1001 and in my code I could then read out the value directly. This helps to eliminate init code first time the project runs. Alternative I had to check to see if the memory space was blank and then write the default values (I have more constants allocated) so this way helps eliminate code.
My question is, how do I do this in Code Composer, the code above does not compile..
tanks
Thomas Langholen