X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=tcl%2Ftarget%2Fswj-dp.tcl;h=1d274cb1290cbb73e6efdd64d2ef82b529732ac0;hp=fa44583a436fb1f2e6e3614252833f89ef035e1d;hb=05c6c871e3328dd38dc46ea11b3b9b546feb7850;hpb=4dc8cd201c667bac72bc083ef1fa1b285eb093fc diff --git a/tcl/target/swj-dp.tcl b/tcl/target/swj-dp.tcl index fa44583a43..1d274cb129 100644 --- a/tcl/target/swj-dp.tcl +++ b/tcl/target/swj-dp.tcl @@ -18,13 +18,17 @@ # split out "chip" and "tag" so we can someday handle # them more uniformly irlen too...) -global using_jtag -set using_jtag 1 +if [catch {transport select}] { + echo "Error: unable to select a session transport. Can't continue." + shutdown +} proc swj_newdap {chip tag args} { - global using_jtag - set tran [transport select] - if [string equal $tran "jtag"] { eval jtag newtap $chip $tag $args; set using_jtag 1 } - if [string equal $tran "swd"] { eval swd newdap $chip $tag $args; set using_jtag 0 } - if [string equal $tran "cmsis-dap"] { eval cmsis-dap newdap $chip $tag $args; set using_jtag 0 } + if [using_hla] { + eval hla newtap $chip $tag $args + } elseif [using_jtag] { + eval jtag newtap $chip $tag $args + } elseif [using_swd] { + eval swd newdap $chip $tag $args + } }