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.2 2006/07/19 12:56:26 bernie
18 *#* Convert to new Doxygen style.
20 *#* Revision 1.1 2005/11/04 18:08:49 bernie
21 *#* Import into DevLib.
23 *#* Revision 1.1 2005/05/24 09:17:58 batt
24 *#* Move drivers to top-level.
26 *#* Revision 1.3 2005/05/09 16:36:12 batt
27 *#* Change some function names to accomplish coding standard.
29 *#* Revision 1.2 2005/05/02 16:03:08 batt
30 *#* Remove unusefull interrupt saving.
32 *#* Revision 1.1 2005/05/02 12:36:39 batt
40 #include <cfg/compiler.h>
42 typedef uint16_t pwm_duty_t;
44 void pwm_setDuty(PwmDev dev, pwm_duty_t duty);
47 #define PWM_MAX_DUTY 100
49 #endif /* DRV_PWM_H */