mirror of
https://github.com/apache/nuttx.git
synced 2026-08-24 06:58:27 +00:00
arch/arm/src/stm32/stm32_pwm.c: Set CCPxP and CCPxNP bits if polarity is negative.
This commit is contained in:
parent
324d51eaae
commit
7883f0e6a4
1 changed files with 2 additions and 2 deletions
|
|
@ -2874,7 +2874,7 @@ static int pwm_output_configure(FAR struct stm32_pwmtimer_s *priv,
|
|||
|
||||
/* Configure output polarity (all PWM timers) */
|
||||
|
||||
if (priv->channels[channel-1].out1.pol == STM32_POL_POS)
|
||||
if (priv->channels[channel-1].out1.pol == STM32_POL_NEG)
|
||||
{
|
||||
ccer |= (GTIM_CCER_CC1P << ((channel-1)*4));
|
||||
}
|
||||
|
|
@ -2912,7 +2912,7 @@ static int pwm_output_configure(FAR struct stm32_pwmtimer_s *priv,
|
|||
|
||||
/* Configure complementary output polarity */
|
||||
|
||||
if (priv->channels[channel-1].out2.pol == STM32_POL_POS)
|
||||
if (priv->channels[channel-1].out2.pol == STM32_POL_NEG)
|
||||
{
|
||||
ccer |= (ATIM_CCER_CC1NP << ((channel-1)*4));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue