Other Parts Discussed in Thread: MSP430F5438
Aarti at TI, started debugging again. I believe I've worked it out now. Hover over works for registers, variables on the stack and global variables, however, it does not work for static globals. See example below. This is verified using Code Composer version 4.1.3. Can you suggest a workaround or a fix?
"Hover over" meaning put the cursor over the variable and the value is displayed.
unsigned char state; //hover over and display value works
void QueueReads(void)
{
static int DlqTimer2 = 0; //hover over and display value does not work
register unsigned int RegStart, RegEnd; //hover over and display value works
register int i; //hover over and display value works
switch (state)
{
...
}
}
