Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
card10
openocd
Commits
8161fd31
Commit
8161fd31
authored
Nov 23, 2009
by
Zachary T Welch
Browse files
etb: use register_commands()
parent
97fbd793
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/target/etb.c
View file @
8161fd31
...
...
@@ -402,16 +402,28 @@ COMMAND_HANDLER(handle_etb_config_command)
return
ERROR_OK
;
}
static
const
struct
command_registration
etb_config_command_handlers
[]
=
{
{
.
name
=
"config"
,
.
handler
=
&
handle_etb_config_command
,
.
mode
=
COMMAND_CONFIG
,
.
usage
=
"<target> <tap>"
,
},
COMMAND_REGISTRATION_DONE
};
static
const
struct
command_registration
etb_command_handlers
[]
=
{
{
.
name
=
"etb"
,
.
mode
=
COMMAND_ANY
,
.
help
=
"Emebdded Trace Buffer command group"
,
.
chain
=
etb_config_command_handlers
,
},
COMMAND_REGISTRATION_DONE
};
static
int
etb_register_commands
(
struct
command_context
*
cmd_ctx
)
{
struct
command
*
etb_cmd
=
COMMAND_REGISTER
(
cmd_ctx
,
NULL
,
"etb"
,
NULL
,
COMMAND_ANY
,
"Embedded Trace Buffer"
);
COMMAND_REGISTER
(
cmd_ctx
,
etb_cmd
,
"config"
,
handle_etb_config_command
,
COMMAND_CONFIG
,
NULL
);
return
ERROR_OK
;
return
register_commands
(
cmd_ctx
,
NULL
,
etb_command_handlers
);
}
static
int
etb_init
(
struct
etm_context
*
etm_ctx
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment