Files
zephyr/boards/st/nucleo_l4r5zi/support/openocd.cfg
Guillaume Gautier 008b5d9392 boards: Convert nucleo_l4r5zi to HWM v2
Port the board to HWMv2.

Signed-off-by: Guillaume Gautier <guillaume.gautier-ext@st.com>
2024-03-01 15:50:01 +01:00

13 lines
272 B
INI

source [find board/st_nucleo_l4.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
}