Reformat. Add appconfig include.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 21 Mar 2008 00:03:37 +0000 (00:03 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 21 Mar 2008 00:03:37 +0000 (00:03 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1209 38d2e660-2303-0410-9eaa-f027e97ec537

app/triface/protocol.c
mware/parser.c

index 6a415118cf076d38d0a5ab44ee47ab188482487d..57fefa4c7127440595f2344136a351270d07511d 100644 (file)
@@ -45,6 +45,8 @@
 #include "protocol.h"
 #include "cmd_ctor.h"  // MAKE_CMD, REGISTER_CMD
 #include "verstag.h"
+#include "hw_adc.h"
+#include "hw_input.h"
 
 #include <drv/timer.h>
 #include <drv/ser.h>
 
 #include <kern/kfile.h>
 
-#include "hw_adc.h"
-#include "hw_input.h"
-
 #include <stdlib.h>
 #include <string.h>
 
-//#include <cmd_hunk.h>
-
+#include "appconfig.h"
 
 // Define the format string for ADC
 #define ADC_FORMAT_STR "dddd"
@@ -91,7 +89,8 @@ uint8_t reg_status_dout;
 /**
  * Send a NAK asking the host to send the current message again.
  *
- * \param err  human-readable description of the error for debug purposes.
+ * \a fd kfile handler for serial.
+ * \a err  human-readable description of the error for debug purposes.
  */
 INLINE void NAK(KFile *fd, const char *err)
 {
index f367754420ad7fa62b130c374d4293ba1edc0677..cc20b4e6a79e97a8fefef5e9323fb3e5ef141390 100644 (file)
@@ -61,6 +61,8 @@
 
 #include <mware/hashtable.h>
 
+#include "appconfig.h"
+
 #define ARG_SEP_S " "
 #define ARG_SEP_C ' '