Add some modules.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 23 Mar 2009 14:48:52 +0000 (14:48 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 23 Mar 2009 14:48:52 +0000 (14:48 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2402 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_debug.h
bertos/cfg/cfg_formatwr.h
bertos/cfg/debug.h
bertos/mware/formatwr.h
bertos/mware/hex.h

index 25b25858b2fdfcceb13932035292a75d0a064bb0..f4d2c83fb582431de563851e76cd13c426c724fd 100644 (file)
 #ifndef CFG_DEBUG_H
 #define CFG_DEBUG_H
 
-/// kdebug console.
+/**
+ * Debug console port.
+ * $WIZ$ type = "int"; min = 0
+ */
 #define CONFIG_KDEBUG_PORT 0
 
-/// Baud-rate for the kdebug console.
-#define CONFIG_KDEBUG_BAUDRATE  115200
+/**
+ * Baudrate for the debug console.
+ * $WIZ$ type = "int"; min = 0
+ */
+#define CONFIG_KDEBUG_BAUDRATE  115200UL
 
 #endif /* CFG_DEBUG_H */
index a3cf6f624129e38efcd16df5156f876f83595e49..bafad70b81aa374640c4382a25f81e5f9e043e8c 100644 (file)
  * \author Daniele Basile <asterix@develer.com>
  */
 
-#ifndef CFG_FORMTWR_H
-#define CFG_FORMTWR_H
+#ifndef CFG_FORMATWR_H
+#define CFG_FORMATWR_H
 
 /**
  * printf()-style formatter configuration.
+ * $WIZ$ type = "enum"; value_list = "printf_list"
  *
  * \sa PRINTF_DISABLED
  * \sa PRINTF_NOMODIFIERS
@@ -52,5 +53,5 @@
 #define CONFIG_PRINTF PRINTF_FULL
 
 
-#endif /* CFG_FORMTWR_H */
+#endif /* CFG_FORMATWR_H */
 
index 4aa33639d5765d3cf4c87461bf41aecb826d563c..2850bbb2355c3211283becc78692c56503c0c504 100644 (file)
  *
  * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZ$ module_name = "debug"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_debug.h"
+ * $WIZ$ DEBUG = 1
+ * $WIZ$ module_depends = "formatwr"
  */
 
 #ifndef BERTOS_DEBUG_H
index bd66b7e7a3300c58c80abd24848ba4d1be136dd1..00304617e11cf5b2adeae382c31f2b0642a9446a 100644 (file)
  * \version $Id$
  *
  * \brief Basic "printf", "sprintf" and "fprintf" formatter.
+ *
+ * $WIZ$ module_name = "formatwr"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_formatwr.h"
+ * $WIZ$ module_depends = "hex"
  */
 
 #ifndef MWARE_FORMATWR_H
@@ -46,6 +50,7 @@
 
 /**
  * \name _formatted_write() configuration
+ * $WIZ$ printf_list = "PRINTF_DISABLED", "PRINTF_NOMODIFIERS", "PRINTF_REDUCED", "PRINTF_NOFLOAT", "PRINTF_FULL"
  * \{
  */
 #define PRINTF_DISABLED    0
index 5e036dfeef4e5d758df0b32786e672b109a5c8e8..aafc2f12aefed21dc522fe280707ef5225537713 100644 (file)
@@ -35,6 +35,7 @@
  * \version $Id$
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
+ * $WIZ$ module_name = "hex"
  */
 
 #ifndef MWARE_HEX_H