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

17 lines
374 B
INI

source [find interface/stlink.cfg]
transport select hla_swd
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
}