Files
zephyr/boards/seeed_studio/wio_terminal/support/openocd.cfg
Gerson Fernando Budke 1b2528df1b boards: wio_terminal: Convert to HWMv2
Port the board to HWMv2.

Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
2024-03-01 15:50:02 +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
}