]> git.sur5r.net Git - openocd/blobdiff - tcl/target/swj-dp.tcl
drivers/cmsis-dap: port to common SWD framework
[openocd] / tcl / target / swj-dp.tcl
index bd348e6611a4b6e178e110b312079f1e29288ecc..f759e7c8df3c265f620cde7213e2bef9b88754ca 100644 (file)
 # split out "chip" and "tag" so we can someday handle
 # them more uniformly irlen too...)
 
+if [catch {transport select}] {
+ echo "Info : session transport was not selected, defaulting to JTAG"
+ transport select jtag
+}
+
 proc swj_newdap {chip tag args} {
- if {[using_jtag]} { eval jtag newtap $chip $tag $args }
- if {[using_swd]} { eval swd newdap $chip $tag $args }
- if {[string equal [transport select] "cmsis-dap"]} { eval cmsis-dap newdap $chip $tag $args }
+ 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
+ }
 }