zephyr/boards/arm/steval_fcu001v1/support/openocd.cfg

19 lines
392 B
INI

source [find interface/stlink.cfg]
transport select hla_swd
set WORKAREASIZE 0x10000
source [find target/stm32f4x.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
}