X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fjtag%2Fstartup.tcl;h=496fdc82e7707d035d2244ace05d7a712bfa69cb;hb=f44eeba16f3e9bebfbc78fd0841124d8b2556246;hp=4e6d5fc181a15b9dc067cd793140c5bb3f933bcc;hpb=91e3268737b578a182cb661d60551657f799ab3c;p=fw%2Fopenocd diff --git a/src/jtag/startup.tcl b/src/jtag/startup.tcl index 4e6d5fc18..496fdc82e 100644 --- a/src/jtag/startup.tcl +++ b/src/jtag/startup.tcl @@ -75,3 +75,15 @@ add_help_text srst_deasserted "Overridable procedure run when srst deassert is d proc srst_asserted {} { puts "Sensed nSRST asserted." } + +# BEGIN MIGRATION AIDS ... these adapter operations originally had +# JTAG-specific names despite the fact that the operations were not +# specific to JTAG, or otherewise had troublesome/misleading names. +# +# FIXME phase these aids out after about April 2011 +# +proc jtag_khz args { eval adapter_khz $args } +proc jtag_nsrst_delay args { eval adapter_nsrst_delay $args } +proc jtag_nsrst_assert_width args { eval adapter_nsrst_assert_width $args } + +# END MIGRATION AIDS