blob: 168b83072689055bea5477e38709eef3383ee22e [file] [log] [blame]
# Copyright (c) 2021, ATL-Electronics
# Copyright (c) 2021, Teslabs Engineering S.L.
# Copyright (c) 2022, Rtone.
# SPDX-License-Identifier: Apache-2.0
source [find interface/cmsis-dap.cfg]
transport select swd
set CHIPNAME gd32f470ik
set CPUTAPID 0x790007a3
source [find target/stm32f4x.cfg]
reset_config trst_and_srst separate
$_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
}