zephyr/boards/olimex/olimexino_stm32/support/openocd.cfg

14 lines
367 B
INI

source [find interface/ftdi/jtag-lock-pick_tiny_2.cfg]
source [find board/olimex_stm32_h103.cfg]
$_TARGETNAME configure -event gdb-attach {
echo "Debugger attaching: halting execution"
reset halt
gdb_breakpoint_override hard
}
$_TARGETNAME configure -event gdb-detach {
echo "Debugger detaching: resuming execution"
resume
}