blob: 7e76ff5be9cda83132a873dd6cd9eb18b3da0b7e [file] [log] [blame]
# 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
}