synching HRTIM's TIMA and TIMB
Trying to make a phase shift PWM for a DAB converter, i managed to do this exact functionality with normal TIM1 (Asynchronous mode), but im very very lost with HRTIM.

I am able to produce complementary PWM signals for TIMA1 and TIMA2, and TIMB1 TIMB2.
but no luck synching those TIMA and B with the HRTIM master timer.
I guess i just want to have control over that phase difference, babysteps...

/* USER CODE BEGIN 2 */
HAL_HRTIM_SimplePWMStart(&hhrtim1, HRTIM_TIMERINDEX_TIMER_A, HRTIM_OUTPUT_TA1);
HAL_HRTIM_SimplePWMStart(&hhrtim1, HRTIM_TIMERINDEX_TIMER_A, HRTIM_OUTPUT_TA2);
HAL_HRTIM_SimplePWMStart(&hhrtim1, HRTIM_TIMERINDEX_TIMER_B, HRTIM_OUTPUT_TB1);
HAL_HRTIM_SimplePWMStart(&hhrtim1, HRTIM_TIMERINDEX_TIMER_B, HRTIM_OUTPUT_TB2);
/*
HAL_HRTIM_WaveformOutputStart(&hhrtim1, HRTIM_OUTPUT_TA1); // Enable the generation of the waveform signal on the designated output
HAL_HRTIM_WaveformOutputStart(&hhrtim1, HRTIM_OUTPUT_TA2); // Enable the generation of the waveform signal on the designated output
HAL_HRTIM_WaveformOutputStart(&hhrtim1, HRTIM_OUTPUT_TB1); // Enable the generation of the waveform signal on the designated output
HAL_HRTIM_WaveformOutputStart(&hhrtim1, HRTIM_OUTPUT_TB2); // Enable the generation of the waveform signal on the designated output
HAL_HRTIM_WaveformCounterStart(&hhrtim1, HRTIM_TIMERID_TIMER_A); // Start the counter of the Timer A operating in waveform mode
HAL_HRTIM_WaveformCounterStart(&hhrtim1, HRTIM_TIMERID_TIMER_B); // Start the counter of the Timer B operating in waveform mode
*/
/* USER CODE END 2 */


