mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-08-15 04:35:17 +10:00
We use swd emulation in direct memory operations. Instead of relying on deprecated autoselect of transport, explicitly state swd as transport scheme. Change-Id: Iec7e2ad18edd365992cd7ba88558494bccf49fd2 Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8975 Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Tested-by: jenkins
24 lines
732 B
INI
24 lines
732 B
INI
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2024 Texas Instruments Incorporated - http://www.ti.com/
|
|
#
|
|
# Texas Instruments AM62A7
|
|
# Link: https://www.ti.com/product/AM62A7
|
|
#
|
|
# This configuration file is used as a self hosted debug configuration that
|
|
# works on every AM62A7 platform based on firewall configuration permitted
|
|
# in the system.
|
|
#
|
|
# In this system openOCD runs on one of the CPUs inside AM62A7 and provides
|
|
# network ports that can then be used to debug the microcontrollers on the
|
|
# SoC - either self hosted IDE OR remotely.
|
|
|
|
# We are using dmem, which uses dapdirect_swd transport
|
|
adapter driver dmem
|
|
transport select swd
|
|
|
|
if { ![info exists SOC] } {
|
|
set SOC am62a7
|
|
}
|
|
|
|
source [find target/ti_k3.cfg]
|