ZY1000 help/usage fixups

The usual:  same EBNF as in the User's Guide, full sentence helptext,
function names *are* their addresses.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
David Brownell 2010-01-09 22:14:08 -08:00
parent 0811f6b192
commit 5cb1dcfad3
1 changed files with 11 additions and 8 deletions

View File

@ -832,29 +832,32 @@ void embeddedice_write_dcc(struct jtag_tap *tap, int reg_addr, uint8_t *buffer,
static const struct command_registration zy1000_commands[] = { static const struct command_registration zy1000_commands[] = {
{ {
.name = "power", .name = "power",
.handler = &handle_power_command, .handler = handle_power_command,
.mode = COMMAND_ANY, .mode = COMMAND_ANY,
.help = "turn power switch to target on/off. No arguments - print status.", .help = "Turn power switch to target on/off. "
.usage = "power <on/off>", "With no arguments, prints status.",
.usage = "('on'|'off)",
}, },
{ {
.name = "zy1000_version", .name = "zy1000_version",
.mode = COMMAND_ANY, .mode = COMMAND_ANY,
.jim_handler = &jim_zy1000_version, .jim_handler = jim_zy1000_version,
.help = "print version info for zy1000", .help = "Print version info for zy1000.",
.usage = "['openocd'|'zy1000'|'date'|'time'|'pcb'|'fpga']",
}, },
{ {
.name = "powerstatus", .name = "powerstatus",
.mode = COMMAND_ANY, .mode = COMMAND_ANY,
.jim_handler = & zylinjtag_Jim_Command_powerstatus, .jim_handler = zylinjtag_Jim_Command_powerstatus,
.help = "print power status of target", .help = "Returns power status of target",
}, },
#ifdef CYGPKG_HAL_NIOS2 #ifdef CYGPKG_HAL_NIOS2
{ {
.name = "updatezy1000firmware", .name = "updatezy1000firmware",
.mode = COMMAND_ANY, .mode = COMMAND_ANY,
.jim_handler = &jim_zy1000_writefirmware, .jim_handler = jim_zy1000_writefirmware,
.help = "writes firmware to flash", .help = "writes firmware to flash",
/* .usage = "some_string", */
}, },
#endif #endif
COMMAND_REGISTRATION_DONE COMMAND_REGISTRATION_DONE