From cf15276df33e24a72eedf38af97dde3f3404fce2 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Fri, 1 Apr 2011 13:21:02 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2863 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM32/pwm_lld.h | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) (limited to 'os/hal/platforms/STM32') diff --git a/os/hal/platforms/STM32/pwm_lld.h b/os/hal/platforms/STM32/pwm_lld.h index e36b6f1f6..3d0d9d79c 100644 --- a/os/hal/platforms/STM32/pwm_lld.h +++ b/os/hal/platforms/STM32/pwm_lld.h @@ -40,38 +40,21 @@ */ #define PWM_CHANNELS 4 -/** - * @brief Standard output modes mask. - */ -#define PWM_OUTPUT_MASK 0x07 - -/** - * @brief Output not driven, callback only. - */ -#define PWM_OUTPUT_DISABLED 0x00 - -/** - * @brief Positive PWM logic, active is logic level one. - */ -#define PWM_OUTPUT_ACTIVE_HIGH 0x01 - -/** - * @brief Inverse PWM logic, active is logic level zero. - */ -#define PWM_OUTPUT_ACTIVE_LOW 0x02 - /** * @brief Complementary output modes mask. + * @note This is an STM32-specific setting. */ -#define PWM_COMPLEMENTARY_OUTPUT_MASK 0x70 +#define PWM_COMPLEMENTARY_OUTPUT_MASK 0xF0 /** * @brief Complementary output not driven. + * @note This is an STM32-specific setting. */ #define PWM_COMPLEMENTARY_OUTPUT_DISABLED 0x00 /** * @brief Complementary output, active is logic level one. + * @note This is an STM32-specific setting. * @note This setting is only available if the configuration option * @p STM32_PWM_USE_ADVANCED is set to TRUE and only for advanced * timers TIM1 and TIM8. @@ -80,6 +63,7 @@ /** * @brief Complementary output, active is logic level zero. + * @note This is an STM32-specific setting. * @note This setting is only available if the configuration option * @p STM32_PWM_USE_ADVANCED is set to TRUE and only for advanced * timers TIM1 and TIM8. -- cgit v1.2.3