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.

Where is the static variable?



Hi,

I want to check the static variable 

ui32PrevSeconds

in the following code:

int
main(void)
{
    static uint32_t ui32PrevSeconds;
    static uint32_t ui32PrevXferCount;
    static uint32_t ui32PrevUARTCount = 0;

After I load it to debugger of LaunchPad 1294, I don't find a way to show the address of the static variable. A static int variable should not in the stack, is it right? Why does the debugger not show its address and content in the "Memory Browser" window?

Thanks,