
To connect to the LPC based board via OLIMEX ARM-USB-OCD dongle run the command: openocd -f interface/olimex-arm-usb-ocd.cfg -f target/lpc2148.cfg To connect to the LPC based board via OLIMEX ARM-USB-OCD-H dongle run the command: openocd -f interface/olimex-arm-usb-ocd-h.cfg -f target/lpc2148.cfg To connect to the Lisa/L board run the command openocd -f interface/lisa-l.cfg -f board/lisa-l.cfg To connect to the Lisa/M board via FLOSS-JTAG run the command: openocd -f interface/flossjtag.cfg -f board/lisa-l.cfg

(gdb) finish - Step out of the present function (gdb) next - Next program line (step over function calls) (gdb) cont - continue running, after a break (gdb) run - start running the program if there are command-line arguments, put them after the run invocation (gdb) break line-number/function name - Set a break-point on a line/at start of function Here are some commonly used commands many of them can be invoked using only the first letter: gdbinit for BMP and gdb-regviewĬommands can often be issued without typing the entire command.
