#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 */
* \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
#define CONFIG_PRINTF PRINTF_FULL
-#endif /* CFG_FORMTWR_H */
+#endif /* CFG_FORMATWR_H */
*
* \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
* \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
/**
* \name _formatted_write() configuration
+ * $WIZ$ printf_list = "PRINTF_DISABLED", "PRINTF_NOMODIFIERS", "PRINTF_REDUCED", "PRINTF_NOFLOAT", "PRINTF_FULL"
* \{
*/
#define PRINTF_DISABLED 0
* \version $Id$
*
* \author Bernie Innocenti <bernie@codewiz.org>
+ * $WIZ$ module_name = "hex"
*/
#ifndef MWARE_HEX_H