Files
zephyr/boards/v2/waveshare/waveshare_open103z/support/openocd.cfg
Erwan Gouriou aa9597f6d9 boards: Convert waveshare_open103z to HWM v2
Port the board to HWMv2.

Signed-off-by: Erwan Gouriou <erwan.gouriou@st.com>
2024-03-01 14:17:12 +00:00

18 lines
401 B
INI

source [find interface/stlink.cfg]
# Work-area size (RAM size) = 64KB
set WORKAREASIZE 0x10000
source [find target/stm32f1x.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
}