Add some utility to manage query strings.
[bertos.git] / bertos / cfg / cfg_thermo.h
index e28af78517079c158007a78d717bd7c6ca45b9aa..2734f8990b9c8a6bb98a11b8e13fa3364818caf1 100644 (file)
  *
  * \brief Configuration file for thermo module.
  *
- * \version $Id$
  * \author Daniele Basile <asterix@develer.com>
  */
 
 #ifndef CFG_THERMO_H
 #define CFG_THERMO_H
 
-/// Interval at which thermo control is performed. $WIZ$ type = "int"
+/**
+ * Module logging level.
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_level"
+ */
+#define CONFIG_THERMO_LOG_LEVEL        LOG_LVL_ERR
+/**
+ * Module logging format.
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_format"
+ */
+#define CONFIG_THERMO_LOG_FORMAT       LOG_FMT_TERSE
+
+
+/**
+ * Interval at which thermo control is performed [ms].
+ *
+ * $WIZ$ type = "int"
+ * $WIZ$ min = 1
+ */
 #define CONFIG_THERMO_INTERVAL_MS        100
 
 /**
  * Number of different samples we interpolate over to get the hifi temperature.
  *
  * $WIZ$ type = "int"
+ * $WIZ$ min = 1
  */
 #define CONFIG_THERMO_HIFI_NUM_SAMPLES    10