X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fpwm.c;h=cb5a45fb0e7293b7f5c292ff2fad620dc9f09a3b;hb=44179275d8102ec4bdaec3c8951fa2b70f1c7c0b;hp=11c4e04bbb845563b17e2c15e9aad9dc85a7ef8e;hpb=e62ca0b357f09804d7d894949df44224c9d74bb7;p=bertos.git diff --git a/bertos/drv/pwm.c b/bertos/drv/pwm.c index 11c4e04b..cb5a45fb 100644 --- a/bertos/drv/pwm.c +++ b/bertos/drv/pwm.c @@ -38,7 +38,15 @@ * \author Daniele Basile */ +#include "cfg/cfg_pwm.h" + #include + +// Define logging setting (for cfg/log.h module). +#define LOG_LEVEL PWM_LOG_LEVEL +#define LOG_VERBOSITY PWM_LOG_FORMAT + +#include #include #include @@ -63,7 +71,7 @@ void pwm_setDuty(PwmDev dev, pwm_duty_t duty) real_duty = (uint64_t)(duty * period) >> (uint64_t)PWM_MAX_PERIOD_LOG2; -// TRACEMSG("real_duty[%d] duty[%d], period[%d]", real_duty, duty, period); + LOG_INFO("real_duty[%d] duty[%d], period[%d]", real_duty, duty, period); pwm_hw_setDutyUnlock(dev, real_duty); }