From: ntfreak at B. <nt...@ma...> - 2009-08-07 11:38:00
|
Author: ntfreak Date: 2009-08-07 11:37:59 +0200 (Fri, 07 Aug 2009) New Revision: 2578 Modified: trunk/src/jtag/tcl.c Log: David Brownell <da...@pa...>: Warn about anyone using "jtag_speed" commands; that command is obsolete, and will someday be removed. Modified: trunk/src/jtag/tcl.c =================================================================== --- trunk/src/jtag/tcl.c 2009-08-07 09:29:41 UTC (rev 2577) +++ trunk/src/jtag/tcl.c 2009-08-07 09:37:59 UTC (rev 2578) @@ -942,6 +942,9 @@ { 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) |