jlink: switch commands to subcommands

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
__archive__
Jean-Christophe PLAGNIOL-VILLARD 2011-02-28 20:40:46 +01:00 committed by Øyvind Harboe
parent 99cd373019
commit b992dd58f1
2 changed files with 15 additions and 5 deletions

View File

@ -2319,9 +2319,9 @@ This is a write-once setting.
@deffn {Interface Driver} {jlink}
Segger jlink USB adapter
@c command: jlink_info
@c command: jlink info
@c dumps status
@c command: jlink_hw_jtag (2|3)
@c command: jlink hw_jtag (2|3)
@c sets version 2 or 3
@end deffn

View File

@ -656,15 +656,15 @@ COMMAND_HANDLER(jlink_handle_jlink_hw_jtag_command)
return ERROR_OK;
}
static const struct command_registration jlink_command_handlers[] = {
static const struct command_registration jlink_subcommand_handlers[] = {
{
.name = "jlink_info",
.name = "info",
.handler = &jlink_handle_jlink_info_command,
.mode = COMMAND_EXEC,
.help = "show jlink info",
},
{
.name = "jlink_hw_jtag",
.name = "hw_jtag",
.handler = &jlink_handle_jlink_hw_jtag_command,
.mode = COMMAND_EXEC,
.help = "access J-Link HW JTAG command version",
@ -673,6 +673,16 @@ static const struct command_registration jlink_command_handlers[] = {
COMMAND_REGISTRATION_DONE
};
static const struct command_registration jlink_command_handlers[] = {
{
.name = "jlink",
.mode = COMMAND_ANY,
.help = "perform jlink management",
.chain = jlink_subcommand_handlers,
},
COMMAND_REGISTRATION_DONE
};
struct jtag_interface jlink_interface = {
.name = "jlink",
.commands = jlink_command_handlers,