> -----Original Message----- > From: [email protected] > [mailto:[email protected]] On > Behalf Of David Brownell > Sent: 05 August 2009 18:36 > To: [email protected] > Subject: [Openocd-development] [patch] warning on "jtag_speed" usage > > Warn about anyone using "jtag_speed" commands; that command > is obsolete, and will someday be removed. > --- > src/jtag/tcl.c | 3 +++ > 1 file changed, 3 insertions(+) > > --- a/src/jtag/tcl.c > +++ b/src/jtag/tcl.c > @@ -992,6 +992,9 @@ static int handle_jtag_speed_command(str { > int retval = ERROR_OK; > > + command_print(cmd_ctx, "OLD SYNTAX: DEPRECATED - " > + "use jtag_khz, not jtag_speed"); > + > if (argc > 1) > return ERROR_COMMAND_SYNTAX_ERROR; > if (argc == 1) >
committed Cheers Spen _______________________________________________ Openocd-development mailing list [email protected] https://lists.berlios.de/mailman/listinfo/openocd-development
