Reputation: 1
i use __asm__ __volatile__ ("bkpt #0");
in code. GDB stop with signal SIGTRAP. Ok, but i want the code to run further.
in GDB i use 'continue', 'skip', but i still stay on the same instruction. How to skip programm bkpt in GDB?
Upvotes: 0
Views: 404
Reputation: 67721
You need to do step in GDB.
If you use Eclipse use F6 (step over).
Works both with openOCD, seggerGDBserver and stm32 gdb server.
Step over, but step in works as well
Upvotes: 1