I am very familiar with debugging- I use F9 all the time, but here's what the documentation says:
if (KEY_B) { breakpoint; } // breakpoint only if [B] is pressed
if (MY == NULL) { breakpoint; } // breakpoint only if MY is an empty pointer
This looks to me like an example of setting a breakpoint via code instead of using F9 (unless I misunderstand, which is very possible). Here's a link to the documentation:
http://manual.conitec.net/adeb-breakpoint.htm 1) Is this feature still supported?
2) If so, how do I get around the 'unknown identifier'?
3) If not, is there some other means to get the debugger to break in a callback function (which I am unable to step into from the main function)?
Thanks so much for your time!