mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-18 23:42:45 +10:00
Some script have been added or modified after the patches for reworking the adapter commands were pushed in gerrit. Such scripts use the old command syntax and trigger a "deprecated" warning at runtime. Fix them with the same sed commands used for the other scripts: sed -i 's/^interface /adapter driver /' $(find tcl/ -type f) sed -i 's/adapter_khz/adapter speed/g' $(find tcl/ -type f) sed -i 's/adapter_nsrst_delay/adapter srst delay/g' $(find tcl/ -type f) sed -i 's/adapter_nsrst_assert_width/adapter srst pulse_width/g' $(find tcl/ -type f) Change-Id: I0824d6c506a9af3eb9129b74c02a92b4eb1b100d Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5424 Reviewed-by: Oleksij Rempel <linux@rempel-privat.de> Tested-by: jenkins
37 lines
703 B
INI
37 lines
703 B
INI
#
|
|
# Infineon TLE987x family (Arm Cortex-M3 @ up to 40 MHz)
|
|
#
|
|
|
|
if { [info exists CHIPNAME] } {
|
|
set _CHIPNAME $CHIPNAME
|
|
} else {
|
|
set _CHIPNAME tle987x
|
|
}
|
|
|
|
source [find target/swj-dp.tcl]
|
|
|
|
if { [info exists CPU_SWD_TAPID] } {
|
|
set _CPU_SWD_TAPID $CPU_SWD_TAPID
|
|
} else {
|
|
set _CPU_SWD_TAPID 0x2BA01477
|
|
}
|
|
|
|
if { [using_jtag] } {
|
|
# JTAG not supported, only SWD
|
|
set _CPU_TAPID 0
|
|
} else {
|
|
set _CPU_TAPID $_CPU_SWD_TAPID
|
|
}
|
|
|
|
swj_newdap $_CHIPNAME dap -irlen 4 -expected-id $_CPU_TAPID
|
|
dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.dap
|
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
|
target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap
|
|
|
|
if { ![using_hla] } {
|
|
cortex_m reset_config sysresetreq
|
|
}
|
|
|
|
adapter speed 1000
|