jtag: presto, parport help/usage updates
Presto: add doxygen file comment. Parport: note a couple gaps in layout config. Both: use the uniform EBNF for usage, bugfix helptexts, use function name as its address not "&name". Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>__archive__
parent
ad5fd39063
commit
0811f6b192
|
@ -437,10 +437,13 @@ COMMAND_HANDLER(parport_handle_parport_cable_command)
|
||||||
/* only if the cable name wasn't overwritten by cmdline */
|
/* only if the cable name wasn't overwritten by cmdline */
|
||||||
if (parport_cable == 0)
|
if (parport_cable == 0)
|
||||||
{
|
{
|
||||||
|
/* REVISIT first verify that it's listed in cables[] ... */
|
||||||
parport_cable = malloc(strlen(CMD_ARGV[0]) + sizeof(char));
|
parport_cable = malloc(strlen(CMD_ARGV[0]) + sizeof(char));
|
||||||
strcpy(parport_cable, CMD_ARGV[0]);
|
strcpy(parport_cable, CMD_ARGV[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* REVISIT it's probably worth returning the current value ... */
|
||||||
|
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -484,34 +487,37 @@ COMMAND_HANDLER(parport_handle_parport_toggling_time_command)
|
||||||
static const struct command_registration parport_command_handlers[] = {
|
static const struct command_registration parport_command_handlers[] = {
|
||||||
{
|
{
|
||||||
.name = "parport_port",
|
.name = "parport_port",
|
||||||
.handler = &parport_handle_parport_port_command,
|
.handler = parport_handle_parport_port_command,
|
||||||
.mode = COMMAND_CONFIG,
|
.mode = COMMAND_CONFIG,
|
||||||
.help = "either the address of the I/O port "
|
.help = "Display the address of the I/O port (e.g. 0x378) "
|
||||||
"or the number of the '/dev/parport' device",
|
"or the number of the '/dev/parport' device used. "
|
||||||
.usage = "[<port|devname>]",
|
"If a parameter is provided, first change that port.",
|
||||||
|
.usage = "[port_number]",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "parport_cable",
|
.name = "parport_cable",
|
||||||
.handler = &parport_handle_parport_cable_command,
|
.handler = parport_handle_parport_cable_command,
|
||||||
.mode = COMMAND_CONFIG,
|
.mode = COMMAND_CONFIG,
|
||||||
.help = "the layout of the parallel port cable "
|
.help = "Set the layout of the parallel port cable "
|
||||||
"used to connect to the target",
|
"used to connect to the target.",
|
||||||
.usage = "[<layout>]",
|
/* REVISIT there's no way to list layouts we know ... */
|
||||||
|
.usage = "[layout]",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "parport_write_on_exit",
|
.name = "parport_write_on_exit",
|
||||||
.handler = &parport_handle_write_on_exit_command,
|
.handler = parport_handle_write_on_exit_command,
|
||||||
.mode = COMMAND_CONFIG,
|
.mode = COMMAND_CONFIG,
|
||||||
.help = "configure the parallel driver to write "
|
.help = "Configure the parallel driver to write "
|
||||||
"a known value to the parallel interface",
|
"a known value to the parallel interface on exit.",
|
||||||
.usage = "[<on|off>]",
|
.usage = "('on'|'off')",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "parport_toggling_time",
|
.name = "parport_toggling_time",
|
||||||
.handler = &parport_handle_parport_toggling_time_command,
|
.handler = parport_handle_parport_toggling_time_command,
|
||||||
.mode = COMMAND_CONFIG,
|
.mode = COMMAND_CONFIG,
|
||||||
.help = "time <ns> it takes for the hardware to toggle TCK",
|
.help = "Displays or assigns how many nanoseconds it "
|
||||||
.usage = "[<ns>]",
|
"takes for the hardware to toggle TCK.",
|
||||||
|
.usage = "[nanoseconds]",
|
||||||
},
|
},
|
||||||
COMMAND_REGISTRATION_DONE
|
COMMAND_REGISTRATION_DONE
|
||||||
};
|
};
|
||||||
|
|
|
@ -17,6 +17,11 @@
|
||||||
* Free Software Foundation, Inc., *
|
* Free Software Foundation, Inc., *
|
||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file Holds driver for PRESTO programmer from ASIX.
|
||||||
|
* http://tools.asix.net/prg_presto.htm
|
||||||
|
*/
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
@ -742,10 +747,10 @@ COMMAND_HANDLER(presto_handle_serial_command)
|
||||||
static const struct command_registration presto_command_handlers[] = {
|
static const struct command_registration presto_command_handlers[] = {
|
||||||
{
|
{
|
||||||
.name = "presto_serial",
|
.name = "presto_serial",
|
||||||
.handler = &presto_handle_serial_command,
|
.handler = presto_handle_serial_command,
|
||||||
.mode = COMMAND_CONFIG,
|
.mode = COMMAND_CONFIG,
|
||||||
.help = "configure serial port",
|
.help = "Configure USB serial number of Presto device.",
|
||||||
.usage = "<devname>",
|
.usage = "serial_string",
|
||||||
},
|
},
|
||||||
COMMAND_REGISTRATION_DONE
|
COMMAND_REGISTRATION_DONE
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue