Added telnet_async command to enable/disable asynchronous
messages. git-svn-id: svn://svn.berlios.de/openocd/trunk@1117 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -38,16 +38,16 @@ typedef struct command_context_s
|
||||
struct command_s *commands;
|
||||
int current_target;
|
||||
/* Execute a command.
|
||||
*
|
||||
*
|
||||
* If the command fails, it *MUST* return a value != ERROR_OK
|
||||
* (many commands break this rule, patches welcome!)
|
||||
*
|
||||
*
|
||||
* This is *especially* important for commands such as writing
|
||||
* to flash or verifying memory. The reason is that those commands
|
||||
* can be used by programs to determine if the operation succeded
|
||||
* or not. If the operation failed, then a program can try
|
||||
* an alternative approach.
|
||||
*
|
||||
*
|
||||
* Returning ERROR_COMMAND_SYNTAX_ERROR will have the effect of
|
||||
* printing out the syntax of the command.
|
||||
*/
|
||||
@@ -101,4 +101,6 @@ extern Jim_Interp *interp;
|
||||
|
||||
void register_jim(command_context_t *context, const char *name, int (*cmd)(Jim_Interp *interp, int argc, Jim_Obj *const *argv), const char *help);
|
||||
|
||||
long jim_global_long(const char *variable);
|
||||
|
||||
#endif /* COMMAND_H */
|
||||
|
||||
Reference in New Issue
Block a user