• Stuck at Interrupt while Stepping
    Hi, I wrote a simple PWM code and it was working fine. But when I tried to enable the match interrupts, the code just get gets stuck inside the interrupt handler while stepping in the debugger. ...
  • Dealing with non-aligned data
    Hello, A colleague of mine, while processing some binary data, transfered a RAM memory address to a function. That address was not even (ARM7 architecture) so the LDR instruction behaved exactly...
  • How to deal with va_xxx constructions?
    Hello, I have the following piece of code: static void *Circle_ctor( void *_self, va_list *app ) { struct Circle *self = ( (const struct Class *) Point )-> ctor( _self, app ) ; self->rad =...
  • How to deal with bypass mode?
    I download the CAN example from " http://www.keil.com/appnotes/docs/apnt_181.asp " .When I debug the project,It shows "Device cannot enter bypass mode,Connection to target missing or incorrectly" ...
  • Stucking at breakpoint
    Hi, sometimes the debugger stucks at a breakpoint and even if I use single-step, step-over or just run the program, the PC does not change. Deleting the breakpoint does not fix the problem. I have...