STM32L010F4, standby mode how to exit with RTC Alarm A
I have Alarm A set on the RTC every minute.I tried it with the function: void HAL_RTC_AlarmAEventCallback(RTC_HandleTypeDef *hrtc) { HAL_GPIO_TogglePin(LED_GPIO_Port, RolDolu_Pin); } (LED on after one minute and off after one minute) When I switch th...