cortex: autostep correctly handle user breakpoint
[fw/openocd] / src / jtag / startup.tcl
index 1779df51bfa682fc90f56b1a85000b4a9238a171..11a79779341488001978d030fbfc0379221642eb 100644 (file)
@@ -91,8 +91,19 @@ add_help_text measure_clk "Runs a test to measure the JTAG clk. Useful with RCLK
 #
 # 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 }
+proc jtag_khz args {
+       echo "DEPRECATED! use 'adapter_khz' not 'jtag_khz'"
+       eval adapter_khz $args
+}
+
+proc jtag_nsrst_delay args {
+       echo "DEPRECATED! use 'adapter_nsrst_delay' not 'jtag_nsrst_delay'"
+       eval adapter_nsrst_delay $args
+}
+
+proc jtag_nsrst_assert_width args {
+       echo "DEPRECATED! use 'adapter_nsrst_assert_width' not 'jtag_nsrst_assert_width'"
+       eval adapter_nsrst_assert_width $args
+}
 
 # END MIGRATION AIDS