arch/arm/src/stm32/stm32_pwm.h: fix nxstyle issues

This commit is contained in:
raiden00pl 2020-04-03 22:50:07 +02:00 committed by patacongo
parent 8988251814
commit ae31b1f926

View File

@ -55,14 +55,22 @@
#include "chip.h"
#ifdef CONFIG_STM32_PWM
# include <arch/board/board.h>
# include "hardware/stm32_tim.h"
#endif
/************************************************************************************
* Pre-processor Definitions
************************************************************************************/
/* Configuration ********************************************************************/
/* Timer devices may be used for different purposes. One special purpose is
* to generate modulated outputs for such things as motor control. If CONFIG_STM32_TIMn
* is defined then the CONFIG_STM32_TIMn_PWM must also be defined to indicate that
* timer "n" is intended to be used for pulsed output signal generation.
* to generate modulated outputs for such things as motor control.
* If CONFIG_STM32_TIMn is defined then the CONFIG_STM32_TIMn_PWM must also be
* defined to indicate that timer "n" is intended to be used for pulsed output
* signal generation.
*/
#ifndef CONFIG_STM32_TIM1
@ -120,9 +128,6 @@
#ifdef CONFIG_STM32_PWM
#include <arch/board/board.h>
#include "hardware/stm32_tim.h"
/* PWM driver channels configuration */
#ifdef CONFIG_STM32_PWM_MULTICHAN
@ -1013,13 +1018,18 @@ enum stm32_pwm_output_e
STM32_PWM_OUT3 = (1 << 4),
STM32_PWM_OUT3N = (1 << 5),
STM32_PWM_OUT4 = (1 << 6),
/* 1 << 7 reserved - no complementary output for CH4 */
#ifdef HAVE_IP_TIMERS_V2
/* Only available inside micro */
STM32_PWM_OUT5 = (1 << 8),
/* 1 << 9 reserved - no complementary output for CH5 */
STM32_PWM_OUT6 = (1 << 10),
/* 1 << 11 reserved - no complementary output for CH6 */
#endif
};
@ -1072,7 +1082,8 @@ struct stm32_pwm_ops_s
/* Enable outputs */
int (*outputs_enable)(FAR struct pwm_lowerhalf_s *dev, uint16_t outputs, bool state);
int (*outputs_enable)(FAR struct pwm_lowerhalf_s *dev, uint16_t outputs,
bool state);
/* Software update */
@ -1125,7 +1136,7 @@ extern "C"
#endif
/************************************************************************************
* Public Functions
* Public Function Prototypes
************************************************************************************/
/************************************************************************************