Files
zephyr/boards/seeed/wio_terminal/support/openocd.cfg
Jamie McCrae 4b5bd7ae8a boards: seeed_studio: Rename to seeed
Aligns with vendor prefix

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
2024-03-01 15:50:11 +01:00

23 lines
401 B
INI

# SPDX-License-Identifier: Apache-2.0
source [find interface/jlink.cfg]
transport select swd
set CHIPNAME atsamd51p19
source [find target/atsame5x.cfg]
adapter_khz 500
reset_config srst_only
$_TARGETNAME configure -event gdb-attach {
echo "Debugger attaching: halting execution"
reset halt
}
$_TARGETNAME configure -event gdb-detach {
echo "Debugger detaching: resuming execution"
resume
}