From 72acdac71aa2b2dd787f9b1e400d058e1887e61f Mon Sep 17 00:00:00 2001 From: zwelch Date: Sun, 10 May 2009 19:44:38 +0000 Subject: Revive tclapi.c from r1650: * Remove superfluous #include directives. * Fix warnings and API usage to cure its bit rot. * Build into libhelper library (for now). Add tclapi.h to export tclapi_register_commands(). Register tclapi commands in openocd.c:setup_command_handler(). git-svn-id: svn://svn.berlios.de/openocd/trunk@1691 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/openocd.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/openocd.c') diff --git a/src/openocd.c b/src/openocd.c index 7e8b7cdf..4d76fd6c 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -41,6 +41,7 @@ #include "mflash.h" #include "command.h" +#include "tclapi.h" #include "server.h" #include "telnet_server.h" #include "gdb_server.h" @@ -202,6 +203,7 @@ command_context_t *setup_command_handler(void) telnet_register_commands(cmd_ctx); gdb_register_commands(cmd_ctx); tcl_register_commands(cmd_ctx); /* tcl server commands */ + tclapi_register_commands(cmd_ctx); /* misc tcl commands */ log_register_commands(cmd_ctx); jtag_register_commands(cmd_ctx); xsvf_register_commands(cmd_ctx); -- cgit v1.2.3