X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fntc.c;h=8f03732e33ab1702e561c984dcc1dfe6270cf663;hb=15810459b8f5fb09b12cef6f8e4d4e64d167087b;hp=cc74e306250867d74631b9034085971b1e879973;hpb=c22fe24a0da896a52dbc3882390ec18a440ef56a;p=bertos.git diff --git a/bertos/drv/ntc.c b/bertos/drv/ntc.c index cc74e306..8f03732e 100644 --- a/bertos/drv/ntc.c +++ b/bertos/drv/ntc.c @@ -32,8 +32,6 @@ * * \brief Driver for NTC (reads a temperature through an ADC) * - * \version $Id$ - * * \author Giovanni Bajo * \author Francesco Sacchi * @@ -46,6 +44,12 @@ #include "hw/hw_ntc.h" #include "hw/ntc_map.h" +#include "cfg/cfg_ntc.h" + +// Define logging setting (for cfg/log.h module). +#define LOG_LEVEL CONFIG_NTC_LOG_LEVEL +#define LOG_VERBOSITY CONFIG_NTC_LOG_FORMAT +#include #include #include @@ -102,9 +106,9 @@ deg_t ntc_read(NtcDev dev) const NtcHwInfo* hw = ntc_hw_getInfo(dev); const res_t* r = hw->resistances; - float rx; + res_t rx; size_t i; - deg_t degrees; + deg_t degrees = 0; rx = ntc_hw_read(dev);