Browse Source

jtag/startup.tcl: fix regression with autoselecting JTAG

This regression was introduced with d90b86d8. "transport select" doesn't
throw an error anymore and autoselects the first available transport on
its own.

Reported by moyix on IRC.

Change-Id: I3f303c0372e915931cca4b28af450694abc1a63e
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/2693
Tested-by: jenkins
tags/v0.9.0-rc1
Paul Fertser 9 years ago
parent
commit
e51d591641
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      src/jtag/startup.tcl

+ 2
- 3
src/jtag/startup.tcl View File

@@ -89,9 +89,8 @@ proc measure_clk {} {
add_help_text measure_clk "Runs a test to measure the JTAG clk. Useful with RCLK / RTCK."

proc default_to_jtag { f args } {
if [catch {transport select} current_transport] {
echo "Info : session transport was not selected, defaulting to JTAG"
transport select jtag
set current_transport [transport select]
if {[using_jtag]} {
eval $f $args
} {
error "session transport is \"$current_transport\" but your config requires JTAG"


Loading…
Cancel
Save