/**
* @brief This macro mask output output logic to high or low
* @param[in] pwm The base address of PWM module
* @param[in] u32ChannelMask Combination of enabled channels. Each bit corresponds to a channel
* Bit 0 represents channel 0, bit 1 represents channel 1...
* @param[in] u32LevelMask Output logic to high or low
* @return None
* \hideinitializer
*/
#define EPWM_MASK_OUTPUT(pwm, u32ChannelMask, u32LevelMask) \
do { \
(pwm)->MSKEN = u32ChannelMask; \
(pwm)->MSK = u32LevelMask; \
}while(0)