X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fcfg_thermo.h;h=2734f8990b9c8a6bb98a11b8e13fa3364818caf1;hb=39279a8f7a3c0aa7c0dc2f56863e088568044d79;hp=c9039ff6db31d9680f6a65be1f8232ed79650820;hpb=25debf82616a67ecb6abc97a1c4a7d9f61360bf9;p=bertos.git diff --git a/bertos/cfg/cfg_thermo.h b/bertos/cfg/cfg_thermo.h index c9039ff6..2734f899 100644 --- a/bertos/cfg/cfg_thermo.h +++ b/bertos/cfg/cfg_thermo.h @@ -32,20 +32,39 @@ * * \brief Configuration file for thermo module. * - * \version $Id$ * \author Daniele Basile */ #ifndef CFG_THERMO_H #define CFG_THERMO_H -/// Interval at which thermo control is performed. $WIZARD = { "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. * - * $WIZARD = { "type" : "int" } + * $WIZ$ type = "int" + * $WIZ$ min = 1 */ #define CONFIG_THERMO_HIFI_NUM_SAMPLES 10