SVPWM implementation different from documentation
There is mistake in either the documentation or the source code, which one is correct please advise.
__weak uint16_t PWMC_SetPhaseVoltage(PWMC_Handle_t *pHandle, alphabeta_t Valfa_beta)
{
wUAlpha = Valfa_beta.alpha * (int32_t)pHandle->hT_Sqrt3;
wUBeta = -(Valfa_beta.beta * ((int32_t)pHandle->PWMperiod)) * 2;
}
But if you compare with the documentation

In the alpha code the PWM period (T) is missing.
In the beta code additional 2 is found.
Why there is a difference? Please help.
