zephyr/boards/arm/nucleo_l152re/support/openocd.cfg
Nazar Kazakov f483b1bc4c everywhere: fix typos
Fix a lot of typos

Signed-off-by: Nazar Kazakov <nazar.kazakov.work@gmail.com>
2022-03-18 13:24:08 -04:00

23 lines
590 B
INI

# TODO: Once official openOCD fix merged and available in zephyr:
# http://openocd.zylin.com/#/c/5829/
# revert to board/st_nucleo_l1.cfg
# source [find board/st_nucleo_l1.cfg]
source [find interface/stlink.cfg]
transport select hla_swd
source [find target/stm32l1x_dual_bank.cfg]
reset_config srst_only
$_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
}