PWM Enumerations - PalouseRobosub/SUBLIBinal GitHub Wiki

PWM Enumerations

This page describes all enumerations used for the PWM peripheral library within SUBLIBinal. Please refer to the list below to be redirected to the appropriate documentation.

Enumerations


PWM_Channel

Definition

    typedef enum {
        PWM_CH_1,
        PWM_CH_2,
        PWM_CH_3,
        PWM_CH_4,
        PWM_CH_5
    }PWM_Channel;

The PWM_Channel enumeration is used to specify which PWM channel should be used.

top