Rename myself
[bertos.git] / bertos / mware / parser.c
index cc20b4e6a79e97a8fefef5e9323fb3e5ef141390..0d42b8c21faa83ec0a3ee2d95387d9202d2adc5d 100644 (file)
  * All Rights Reserved.
  * -->
  *
- * \version $Id$
- *
- * \author Bernardo Innocenti <bernie@develer.com>
- * \author Stefano Fedrigo <aleph@develer.com>
- * \author Giovanni Bajo <rasky@develer.com>
- *
  * \brief Serial protocol parser and commands.
  *
  * This file contains the serial protocol parser and
  * using an union: the element of the union to use for each
  * argument is determined by format strings present in the
  * CmdTemplate table.
+ *
+ * \version $Id$
+ *
+ * \author Bernie Innocenti <bernie@codewiz.org>
+ * \author Stefano Fedrigo <aleph@develer.com>
+ * \author Giovanni Bajo <rasky@develer.com>
+ *
+ *
  */
 
 
 #include "parser.h"
+
+#include "cfg/cfg_parser.h"
+
 #include <drv/ser.h>
+#include <mware/hashtable.h>
 
 #include <stdlib.h> // atol(), NULL
 #include <string.h> // strchr(), strcmp()
 
-#include <mware/hashtable.h>
 
-#include "appconfig.h"
 
 #define ARG_SEP_S " "
 #define ARG_SEP_C ' '
@@ -354,6 +358,7 @@ void parser_register_cmd(const struct CmdTemplate* cmd)
 }
 
 #if CONFIG_INTERNAL_COMMANDS
+#warning FIXME:This code use boost lib, if you compile with internal command you must fix it.
 static ResultCode cmd_help(void)
 {
 #ifdef _DEBUG