#ifndef CFG_KFILE_H
#define CFG_KFILE_H
-/// Module logging level.
+/**
+ * Module logging level.
+ * $WIZARD = { "type" : "enum", "value_list" : "log_level" }
+ */
#define KFILE_LOG_LEVEL LOG_LVL_INFO
-/// Module logging format.
+/**
+ * Module logging format.
+ * $WIZARD = { "type" : "enum", "value_list" : "log_format" }
+ */
#define KFILE_LOG_FORMAT LOG_FMT_TERSE
-/// Enable the gets function with echo.
+/**
+ * Enable the gets function with echo.
+ * $WIZARD = { "type" : "boolean" }
+ */
#define CONFIG_KFILE_GETS 0
#endif /* CFG_KFILE_H */
* \author Bernie Innocenti <bernie@codewiz.org>
* \author Francesco Sacchi <batt@develer.com>
* \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "kfile",
+ * "depends" : [],
+ * "configuration" : "bertos/cfg/cfg_kfile.h"
+ * }
*/
#ifndef KERN_KFILE_H