From 0ca7bfc9f5de56a67829a93eb5d00c893f293689 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 21 May 2009 21:22:37 +0000 Subject: [PATCH] fix the idcode usage to describe what it actually does git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1612 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- urjtag/ChangeLog | 2 ++ urjtag/src/cmd/cmd_idcode.c | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/urjtag/ChangeLog b/urjtag/ChangeLog index 6345cefa..fb1cffbd 100644 --- a/urjtag/ChangeLog +++ b/urjtag/ChangeLog @@ -10,6 +10,8 @@ actually worked but only returned zero's as this is confusing -- be clear in that we didn't even attempt to read the idcode + * src/cmd/cmd_idcode.c: update usage to reflect reality + 2009-05-19 Arnim Laeuger * data/Makefile.am, data/broadcom/bcm6348/bcm6348, diff --git a/urjtag/src/cmd/cmd_idcode.c b/urjtag/src/cmd/cmd_idcode.c index 54b37e00..e4bd2e68 100644 --- a/urjtag/src/cmd/cmd_idcode.c +++ b/urjtag/src/cmd/cmd_idcode.c @@ -61,9 +61,10 @@ cmd_idcode_help (void) { urj_log (URJ_LOG_LEVEL_NORMAL, _("Usage: %s [BYTES]\n" - "Read [BYTES]|all IDCODEs of all parts in a JTAG chain.\n" + "Read [BYTES] IDCODEs of all parts in a JTAG chain.\n" "\n" - "BYTES must be an unsigned integer, Use 0 for BYTES to read all bytes\n"), + "BYTES must be an unsigned integer, and the default is 0.\n" + "If BYTES is 0, IDCODEs will be read until 32 consecutive zeros are found.\n"), "idcode"); }