From a93b404161dc42f8dee805c8f95bc4974aded9cb Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Sat, 21 Nov 2009 19:27:20 -0800 Subject: improve command handling examples Removes hello and foo commands from top-level registration. Instead, the dummy interface driver and faux flash driver have been augmented to register these commands as sub-commands. --- src/openocd.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/openocd.c') diff --git a/src/openocd.c b/src/openocd.c index e38c84ec..1f29acdb 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -179,9 +179,6 @@ static const struct command_registration openocd_command_handlers[] = { struct command_context *global_cmd_ctx; -/// src/hello.c gives a simple example for writing new command modules -int hello_register_commands(struct command_context *cmd_ctx); - /* NB! this fn can be invoked outside this file for non PC hosted builds */ struct command_context *setup_command_handler(void) { @@ -191,7 +188,6 @@ struct command_context *setup_command_handler(void) register_commands(cmd_ctx, NULL, openocd_command_handlers); /* register subsystem commands */ - hello_register_commands(cmd_ctx); server_register_commands(cmd_ctx); telnet_register_commands(cmd_ctx); gdb_register_commands(cmd_ctx); -- cgit v1.2.3