Extend handle_jtag_n{s,t}rst_delay_command routines:
- Add support to display the reset delays too, like the other commands. - Always show the values, so users can see if they are being redundant. git-svn-id: svn://svn.berlios.de/openocd/trunk@2113 b42882b7-edfa-0310-969c-e2dbd0fdcd60__archive__
parent
ae0ba6f355
commit
c75ef1cd37
|
@ -2115,24 +2115,22 @@ next:
|
||||||
static int handle_jtag_nsrst_delay_command(struct command_context_s *cmd_ctx,
|
static int handle_jtag_nsrst_delay_command(struct command_context_s *cmd_ctx,
|
||||||
char *cmd, char **args, int argc)
|
char *cmd, char **args, int argc)
|
||||||
{
|
{
|
||||||
if (argc != 1)
|
if (argc > 1)
|
||||||
{
|
|
||||||
LOG_ERROR("jtag_nsrst_delay <ms> -- command requires one argument");
|
|
||||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
||||||
}
|
if (argc == 1)
|
||||||
jtag_set_nsrst_delay(strtoul(args[0], NULL, 0));
|
jtag_set_nsrst_delay(strtoul(args[0], NULL, 0));
|
||||||
|
command_print(cmd_ctx, "jtag_nsrst_delay: %u", jtag_get_nsrst_delay());
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int handle_jtag_ntrst_delay_command(struct command_context_s *cmd_ctx,
|
static int handle_jtag_ntrst_delay_command(struct command_context_s *cmd_ctx,
|
||||||
char *cmd, char **args, int argc)
|
char *cmd, char **args, int argc)
|
||||||
{
|
{
|
||||||
if (argc != 1)
|
if (argc > 1)
|
||||||
{
|
|
||||||
LOG_ERROR("jtag_ntrst_delay <ms> -- command requires one argument");
|
|
||||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
||||||
}
|
if (argc == 1)
|
||||||
jtag_set_ntrst_delay(strtoul(args[0], NULL, 0));
|
jtag_set_ntrst_delay(strtoul(args[0], NULL, 0));
|
||||||
|
command_print(cmd_ctx, "jtag_ntrst_delay: %u", jtag_get_ntrst_delay());
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue