Advice on using RTC and WUTR on STM32F446 as a versatile timer and how to reset RTC->SSR?
I am working with the STM32F446 microcontroller and I would like to create a versatile timer function using the RTC:typedef void (*timerCallback_t)();void scheduleOneTimerEvent(uint32_t timeoutMs, timerCallback_t timerCallback);I am considering using...