mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-20 03:54:05 +10:00
Avoid annoying "deprecated" messages in the scripts distributed with OpenOCD code. Change-Id: I82d27cd420db30f0653efbd286a627ef56a8c1fd Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5287 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
15 lines
380 B
INI
15 lines
380 B
INI
# Renesas R-Car Gen2 Evaluation Board common settings
|
|
|
|
reset_config trst_and_srst srst_nogate
|
|
|
|
proc init_reset {mode} {
|
|
# Assert both resets: equivalent to a power-on reset
|
|
adapter assert trst assert srst
|
|
|
|
# Deassert TRST to begin TAP communication
|
|
adapter deassert trst assert srst
|
|
|
|
# TAP should now be responsive, validate the scan-chain
|
|
jtag arp_init
|
|
}
|