28 lines
563 B
INI
28 lines
563 B
INI
if {[info exists env(OPENOCD_INTERFACE)]} {
|
|
set INTERFACE $env(OPENOCD_INTERFACE)
|
|
} else {
|
|
# By default connect over Debug USB port using the EDBG chip
|
|
set INTERFACE "cmsis-dap"
|
|
}
|
|
|
|
source [find interface/$INTERFACE.cfg]
|
|
|
|
transport select swd
|
|
|
|
set CHIPNAME atsame70q21
|
|
|
|
source [find target/atsamv.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
|
|
}
|