HRTIM1 Interrupt Request source does not produce the correct code for HRTimE
Previously I posted that I need MASTER Timer enabled so that the HRTIM1E interrupt would occur in H747.
https://community.st.com/s/question/0D53W00000UfL6uSAF/hrtime1-interrupt-not-firing
It turns out that it is similar to G474.
The code generated by CubeMX is wrong.
As shown below, I enable interrupt source on timer repetition.
but the code generated is
pTimerCfg.InterruptRequests = HRTIM_MASTER_IT_NONE;Also notice that it is the definition for MasterTimer while I am using TimE and MasterTim is not enabled.
So, I need to overwrite manually with
pTimerCfg.InterruptRequests = HRTIM_TIM_IT_REP;Pls try to fix.
