From: asterix Date: Tue, 27 Apr 2010 09:40:36 +0000 (+0000) Subject: Add log module and use temp types. X-Git-Tag: 2.5.0~376 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=4195cd0a5ca51e42d4f094cd6edd02339662e8b0;p=bertos.git Add log module and use temp types. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3532 38d2e660-2303-0410-9eaa-f027e97ec537 --- 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);