We know in extend sleep, 32K is still alive, so If there a timer count register, I can read from API or direct from register? This count I will use to delay 1ms, or others .
Or if there some API, I can use to get 1-10ms tick count , It still work.
Timer0 and Timer2 will stop in extend sleep mode, So do not use it.
Hi, thanks to your question.
Have you ever try API app_timer_set(MSG_ID, TASK_ID, delay); Delay design in unit of 10ms. once set delay as 1, your handler will get called after 10ms.
This API supposed working during extend sleep. In fact,this API derive clock from low frequence ( ext 32k crystal or etc)
Hi, thanks to your question.
Have you ever try API app_timer_set(MSG_ID, TASK_ID, delay); Delay design in unit of 10ms. once set delay as 1, your handler will get called after 10ms.
This API supposed working during extend sleep. In fact,this API derive clock from low frequence ( ext 32k crystal or etc)
Hi
I get some help form My FAE, thanks very much.