Remove unneeded doxygen tags.
[bertos.git] / bertos / drv / pwm.h
index 87ec1b4d492efd06baf92c671dc8755bcb35f812..db00b62a293ebd35baa419944f9595b93c212a82 100644 (file)
  * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
  * -->
  *
- * \version $Id$
  *
  * \brief Pulse Width Modulation (PWM) driver.
  *
- * \version $Id$
  * \author Francesco Sacchi <batt@develer.com>
  * \author Daniele Basile <asterix@develer.com>
  *
  * $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"
+ * $WIZ$ module_supports = "not avr and not cm3"
  */
 
 #ifndef DRV_PWM_H
@@ -76,10 +74,11 @@ INLINE void pwm_setPolarity(PwmDev dev, bool pol)
 
 void pwm_setDuty(PwmDev dev, pwm_duty_t duty);
 void pwm_setFrequency(PwmDev dev, pwm_freq_t freq);
+void pwm_setPolarity(PwmDev dev, bool pol);
 void pwm_enable(PwmDev dev, bool state);
 void pwm_init(void);
 
-/**
+/*
  * Test function prototypes.
  *
  * See pwm_test.c for implemntation of these functions.