zephyr/boards/others/stm32f030_demo/support/openocd.cfg

18 lines
399 B
INI

source [find interface/stlink.cfg]
# Work-area size (RAM size) = 4kB
set WORKAREASIZE 0x1000
source [find target/stm32f0x.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
}