Hi,
 
> 3. How do we declare data to be placed in the information memory? When using 
> Quadravox compiler we use _INFOMEM. 

i found it somewhere in the documentation.
I'm using:

// put following code into the constant values segment INFO
#ifdef MSPGCC
volatile unsigned char __attribute__ ((section ("infomem"))) PulseHighLimit = 
199;      // High pulse limit
#endif
#ifdef IAR
#   pragma memory=constseg(INFO)        // put following code into the constant 
values segment INFO
volatile unsigned char PulseHighLimit = 199;    // High pulse limit
#   pragma memory = default     // end part (put following code into the 
constant values segment INFO)
#endif

Regards,

Rolf


Reply via email to