On 14 February 2012 10:49, Flemming Frandsen <[email protected]> wrote: > > I've read a bit of the cortex_m3 code in openocd and it looks to me as > though single stepping is implemented entirely in openocd as a "set > breakpoint, run, remove breakpoint"-operation, so I don't understand > how gdb could possibly break that by missing some configuration. > > Any clues? >
I can only suggest to enable the debug log debug_level 3 This will give you a clue as to what cmd's gdb is issuing to OpenOCD. step cmd in OpenOCD is the same as gdb stepi - at the asm inst level. step (c level) however in gdb may be implemented as many other OpenOCD cmd's - depends on the context when step is called. Cheers Spen ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
