time interval of HAL_RTCEx_WakeUpTimerEventCallback()
Hello,
Now I'm testing 50msec regular Stop and wakeup using
HAL_RTCEx_SetWakeUpTimer_IT(&hrtc, 102, RTC_WAKEUPCLOCK_RTCCLK_DIV16);
Firstly I expected HAL_RTCEx_WakeUpTimerEventCallback() is done every 50msec but in real it was far faster than expexted.
How do I calculate time interval of HAL_RTCEx_WakeUpTimerEventCallback()?
And I had onother question.
I checked if systick works normally under the regular Stop and wakeup condition.
So I used serial debug by CDC like following but didn't work.
If WakeUpTimer is applied systick doesn't work normally?
Thanks,
static uint32_t count = 0;
count += 1;
uint8_t send_message[30];
sprintf((char *)send_message, "sec:%d\n", (unsigned int)count);
DebugPrint((char *)send_message);
