blob: 839fae7aa6ecd27414a1e1dd7d6de3f346edf93b [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 gd32f450zk
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
}