2.90.42 PWM_OUTPUT_MODES Enum

C

typedef enum 
{
    COMPLEMENTARY_OUTPUT_MODE = 0x0,         /**< Complementary mode output mode*/
    INDEPENDENT_OUTPUT_MODE = 0x1,           /**< Independent mode output mode*/
    PUSH_PULL_OUTPUT_MODE = 0x2,             /**< Push-Pull mode output mode*/
}PWM_OUTPUT_MODES;

Summary

Defines the PWM generator output modes that are available.

Description

The PWMOUTPUTMODES enum defines the different output configurations for the PWM generator. The output modes control whether the PWM signals are generated in complementary, independent, or push-pull mode. These output modes are essential for driving external devices or circuits, and the choice of output mode depends on the hardware and the requirements of the system being controlled.

Remarks

None.