4 * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
9 * \brief PWM driver (interface)
12 * \author Francesco Sacchi <batt@develer.com>
17 *#* Revision 1.1 2005/11/04 18:08:49 bernie
18 *#* Import into DevLib.
20 *#* Revision 1.1 2005/05/24 09:17:58 batt
21 *#* Move drivers to top-level.
23 *#* Revision 1.3 2005/05/09 16:36:12 batt
24 *#* Change some function names to accomplish coding standard.
26 *#* Revision 1.2 2005/05/02 16:03:08 batt
27 *#* Remove unusefull interrupt saving.
29 *#* Revision 1.1 2005/05/02 12:36:39 batt
37 #include <cfg/compiler.h>
39 typedef uint16_t pwm_duty_t;
41 void pwm_setDuty(PwmDev dev, pwm_duty_t duty);
44 #define PWM_MAX_DUTY 100
46 #endif /* DRV_PWM_H */