X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fpwm.h;h=87ec1b4d492efd06baf92c671dc8755bcb35f812;hb=20ee58861ef4b03b868eed377051dde27c8f23ef;hp=37186174de1035d5bec1fe5c68effd73bb89767a;hpb=d7cb700c2fbacab753926804f3d5644d26fcc943;p=bertos.git diff --git a/bertos/drv/pwm.h b/bertos/drv/pwm.h index 37186174..87ec1b4d 100644 --- a/bertos/drv/pwm.h +++ b/bertos/drv/pwm.h @@ -31,17 +31,16 @@ * * \version $Id$ * - * \brief PWM driver (interface) + * \brief Pulse Width Modulation (PWM) driver. * * \version $Id$ * \author Francesco Sacchi * \author Daniele Basile * - * $WIZARD_MODULE = { - * "name" : "pwm", - * "depends" : [], - * "configuration" : "bertos/cfg/cfg_pwm.h" - * } + * $WIZ$ module_name = "pwm" + * $WIZ$ module_configuration = "bertos/cfg/cfg_pwm.h" + * $WIZ$ module_hw = "bertos/hw/pwm_map.h" + * $WIZ$ module_supports = "not avr" */ #ifndef DRV_PWM_H @@ -85,8 +84,10 @@ void pwm_init(void); * * See pwm_test.c for implemntation of these functions. */ -int pwm_testRun(void); -int pwm_testSetUp(void); +void pwm_testRun(void); +int pwm_testSetup(void); +/* For backward compatibility */ +#define pwm_testSetUp() pwm_testSetup() int pwm_testTearDown(void); #endif /* DRV_PWM_H */