aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/pwm_lld.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-07 11:11:45 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-07 11:11:45 +0000
commite4be2c3b13ec4bc059b5b1b2f40c7f84ce6ab77c (patch)
treecb74f829601c554a72ec3aa1e9a3f5bbe01c7b3f /os/hal/templates/pwm_lld.h
parentc85b9403a373189fccf360cacaaf1612c746c58f (diff)
downloadChibiOS-e4be2c3b13ec4bc059b5b1b2f40c7f84ce6ab77c.tar.gz
ChibiOS-e4be2c3b13ec4bc059b5b1b2f40c7f84ce6ab77c.tar.bz2
ChibiOS-e4be2c3b13ec4bc059b5b1b2f40c7f84ce6ab77c.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1583 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/templates/pwm_lld.h')
-rw-r--r--os/hal/templates/pwm_lld.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/os/hal/templates/pwm_lld.h b/os/hal/templates/pwm_lld.h
index a07bed04f..83c075510 100644
--- a/os/hal/templates/pwm_lld.h
+++ b/os/hal/templates/pwm_lld.h
@@ -18,8 +18,9 @@
*/
/**
- * @file templates/pwm_lld.h
- * @brief PWM Driver subsystem low level driver header template.
+ * @file templates/pwm_lld.h
+ * @brief PWM Driver subsystem low level driver header template.
+ *
* @addtogroup PWM_LLD
* @{
*/
@@ -36,7 +37,7 @@
/*===========================================================================*/
/**
- * @brief Number of PWM channels per PWM driver.
+ * @brief Number of PWM channels per PWM driver.
*/
#if !defined(PWM_CHANNELS) || defined(__DOXYGEN__)
#define PWM_CHANNELS 1
@@ -51,25 +52,25 @@
/*===========================================================================*/
/**
- * @brief PWM channel type.
+ * @brief PWM channel type.
*/
typedef uint8_t pwmchannel_t;
/**
- * @brief PWM counter type.
+ * @brief PWM counter type.
*/
typedef uint16_t pwmcnt_t;
/**
- * @brief Driver configuration structure.
- * @note It could be empty on some architectures.
+ * @brief Driver configuration structure.
+ * @note It could be empty on some architectures.
*/
typedef struct {
} PWMConfig;
/**
- * @brief Structure representing an PWM driver.
+ * @brief Structure representing an PWM driver.
*/
typedef struct {
/**