Command all jmCLIG modules from serial port

Committer:
jm
Date:
Sat Feb 12 16:50:25 2011 +0000
Revision:
0:9112e09912db
jmAll Command Line Interface Module

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jm 0:9112e09912db 1 /*************************************************************************
jm 0:9112e09912db 2 * @file jmMessages.h
jm 0:9112e09912db 3 * @brief Control System Messages
jm 0:9112e09912db 4 *
jm 0:9112e09912db 5 * @date December 27,2010
jm 0:9112e09912db 6 */
jm 0:9112e09912db 7
jm 0:9112e09912db 8 #include "stdint.h"
jm 0:9112e09912db 9
jm 0:9112e09912db 10 // variables to enable/disable messages
jm 0:9112e09912db 11 extern uint8_t Help;
jm 0:9112e09912db 12 extern uint8_t Feedback;
jm 0:9112e09912db 13 extern uint8_t Echo;
jm 0:9112e09912db 14
jm 0:9112e09912db 15 // Prototypes
jm 0:9112e09912db 16 void InitMessages(void);
jm 0:9112e09912db 17 void cli_list(void);
jm 0:9112e09912db 18 void cli_version(void);
jm 0:9112e09912db 19 void UnknownCommand(void);
jm 0:9112e09912db 20 void cli_help(void);
jm 0:9112e09912db 21 void cli_feedback(void);
jm 0:9112e09912db 22 void cli_echo(void);
jm 0:9112e09912db 23
jm 0:9112e09912db 24
jm 0:9112e09912db 25 //-------------------------- CLIG PLUGS --------------------
jm 0:9112e09912db 26 // CLIG-CMD
jm 0:9112e09912db 27 /*
jm 0:9112e09912db 28 list cli_list();
jm 0:9112e09912db 29 ver cli_version();
jm 0:9112e09912db 30 help cli_help();
jm 0:9112e09912db 31 feedback cli_feedback();
jm 0:9112e09912db 32 echo cli_echo();
jm 0:9112e09912db 33 */
jm 0:9112e09912db 34
jm 0:9112e09912db 35 //------------------------ END CLIG PLUGS -----------------