This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Interrupted debuging

MDK Keil ARM. Where is possible to set to interrupt not jumping to interrupt when tracing(debuging)? Thenks for tips. JS

  • Yeah, I don't think the world works like that.

    If you're stepping you've already broken the real time functionality, and the processor grinds to a halt while it waits for you. Try to think of a better way to understand the flow/logic of your code. If it's dynamic, perhaps output diagnostics/telemetry so you can figure out what's going on internally without totally distorting the system.

    Depending on your processor/implementation you may be able to set timers, and w atchdogs to stop while waiting for human interaction, suggest you review the manual(s), DBGMCU, etc.