> Hi, > > i want to see what's in the ADC-Memory but the IAR C-Spy can only show what's in the registers. Is there a way to see what's in the ADC-Memory with other Debugers? >
With gdb, you can write
x /16hx &ADC12MEM0
However, your easiest method might be to do something like:
typedef unsigned int TAdcMem[16];
TAdcMem *pAdcMem = (void*) &ADC12MEM0;
and then use the debugger to look at what's in *pAdcMem.
