Resolved! Help with STM32H7A3 low power timer
I have the low power timer LPTIM1 working on a STM32H7A3 but the way I have to clear the IRQs is a little confusing. Here's my IRQHandler:void LPTIM1_IRQHandler(void) { //Disable LPTIM1 CLEAR_BIT(LPTIM1->CR, 0x01); //Clear IRQs LL_LPTIM_ClearFl...