2.90.17 PWM_MasterPhaseSet Function
C
inline static void PWM_MasterPhaseSet(uint32_t masterPhase)
Summary
Sets the phase value for the Master Time Base generator.
Description
This function sets the phase for the Master Time Base generator, allowing you to shift the timing of the PWM signals generated by the module.
Precondition
Refer datasheet for valid size of data bits.
Parameters
Param | Description |
---|---|
masterPhase | Phase value in count |
Returns
None
Example
uint16_t masterPhase;
masterPhase = 0xFF;
PWM_MasterPhaseSet(masterPhase);
Remarks
None