X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fopenocd.c;h=d67ebd59b176273a1be992ef3b6e3a38da08120e;hp=7384065aff0463229700bc7ba00f291030174bda;hb=89870c86e7aafd81a5720fcfd30002d24d26b232;hpb=8a162e5e063fbbd6be04568e29633fad8f8b6720 diff --git a/src/openocd.c b/src/openocd.c index 7384065aff..d67ebd59b1 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -67,7 +67,7 @@ static void print_version(void) } /* Give TELNET a way to find out what version this is */ -static int handle_version_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc) +COMMAND_HANDLER(handle_version_command) { if (argc != 0) return ERROR_COMMAND_SYNTAX_ERROR; @@ -109,7 +109,7 @@ static int log_target_callback_event_handler(struct target_s *target, enum targe int ioutil_init(struct command_context_s *cmd_ctx); /* OpenOCD can't really handle failure of this command. Patches welcome! :-) */ -static int handle_init_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc) +COMMAND_HANDLER(handle_init_command) { if (argc != 0) @@ -177,6 +177,9 @@ static int handle_init_command(struct command_context_s *cmd_ctx, char *cmd, cha command_context_t *global_cmd_ctx; +/// src/hello.c gives a simple example for writing new command modules +int hello_register_commands(struct command_context_s *cmd_ctx); + /* NB! this fn can be invoked outside this file for non PC hosted builds */ command_context_t *setup_command_handler(void) { @@ -188,6 +191,7 @@ command_context_t *setup_command_handler(void) COMMAND_EXEC, "show OpenOCD version"); /* register subsystem commands */ + hello_register_commands(cmd_ctx); server_register_commands(cmd_ctx); telnet_register_commands(cmd_ctx); gdb_register_commands(cmd_ctx);