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.

MCU-PLUS-SDK-AM263X: how to activate 3 trip zones symultaneously

Part Number: MCU-PLUS-SDK-AM263X
Other Parts Discussed in Thread: AM2632

I successfully configured 3 pwm modules for space vector modulation needed for motor control.

In case of protection triggering I activate the trip zone with this commands:

EPWM_forceTripZoneEvent(&hepwm0, EPWM_TZ_FORCE_EVENT_OST);

EPWM_forceTripZoneEvent(&hepwm2, EPWM_TZ_FORCE_EVENT_OST);

EPWM_forceTripZoneEvent(&hepwm11, EPWM_TZ_FORCE_EVENT_OST);

In previous projects with TMS320F18335 I was able to use only 1 command to activate all trip zones simultaneously.

Please, can you provide an example of triggering multiple trip zones symulaneously with access to only 1 uC register?