/** * \file * * * \brief Configuration file for PWM module. * * \author Daniele Basile */ #ifndef CFG_PWM_H #define CFG_PWM_H /** * Module logging level. * * $WIZ$ type = "enum" * $WIZ$ value_list = "log_level" */ #define PWM_LOG_LEVEL LOG_LVL_INFO /** * Module logging format. * * $WIZ$ type = "enum" * $WIZ$ value_list = "log_format" */ #define PWM_LOG_FORMAT LOG_FMT_VERBOSE /** * Enable the OLD pwm API. * Not recommended for new projects. * * $WIZ$ type = "boolean" */ #define CFG_PWM_ENABLE_OLD_API 1 #endif /* CFG_PWM_H */