Question
STM32H5 Comparator with EXTI_RPR1 and EXTI_FPR1 issue.
I get a STM32H5 Nucleo board (MB1814) and configured comparator with neccessary settings using CubeIDE and LL library and got next generated piece of code.I trigger mode choice Rising/Falling Edge Interrupt.
LL_EXTI_EnableFallingTrig_0_31(LL_EXTI_LINE_29);
LL_EXTI_EnableRisingTrig_0_31(LL_EXTI_LINE_29);
LL_EXTI_ClearRisingFlag_0_31(LL_EXTI_LINE_29);
LL_EXTI_ClearFallingFlag_0_31(LL_EXTI_LINE_29);
LL_EXTI_DisableEvent_0_31(LL_EXTI_LINE_29);
LL_EXTI_EnableIT_0_31(LL_EXTI_LINE_29); After referring to the manual, I found that there are no such register bits as mentioned.