Skip to content
Snippets Groups Projects
Commit 720c39ba authored by ntfreak's avatar ntfreak
Browse files

David Brownell <david-b@pacbell.net>:

Warn about anyone using "jtag_speed" commands; that command is obsolete, and will someday be removed.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2578 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 732df6fe
No related branches found
No related tags found
No related merge requests found
...@@ -942,6 +942,9 @@ static int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cm ...@@ -942,6 +942,9 @@ static int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cm
{ {
int retval = ERROR_OK; int retval = ERROR_OK;
command_print(cmd_ctx, "OLD SYNTAX: DEPRECATED - "
"use jtag_khz, not jtag_speed");
if (argc > 1) if (argc > 1)
return ERROR_COMMAND_SYNTAX_ERROR; return ERROR_COMMAND_SYNTAX_ERROR;
if (argc == 1) if (argc == 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment