This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

UCD3138: problem about void init_dpwm1(void) {} in UCD3138 firmware

Part Number: UCD3138

Hello 
I recently learned about UCD3138's full-bridge hard-switch firmware
I have some questions about void init_dpwm1(void) {}
Void init_dpwm0(void) // DPWM1B is Used to drive Sync-FET
{
Dpwm0Regs.DPWMEV3.all = (pmbus_dcdc_config[0].period >> 1);
}
I know this sentence is to set the start position of event3, which is DPWMB, in half the switching period.
I found in the UCD3138 Digital Power Supply Controller Technical Reference Manual,

DPWM B Rising Edge=Event1+filter Duty+Cycle Adjust A+(Event3-Event2),
Will the two have the same meaning? Why in the firmware
Dpwm0Regs.DPWMEV3.all = (pmbus_dcdc_config[0].period >> 1);

to set Event3 instead of setting according to the definition of the manual guide?
Thank you