This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

app_timer power consumption of the big

SDK12.0.0 freertos 52832 The cycle of 20 ms:

app_timer_create(&m_acc_interval_timer, APP_TIMER_MODE_REPEATED, App_HalAcc_Timeout_Handler);

app_timer_start(m_acc_interval_timer, APP_TIMER_TICKS(20, APP_TIMER_PRESCALER), NULL);

app_timer_stop(m_acc_interval_timer);

Before the opening: 28uA; In the open: 58uA; stop: 54uA; Why can't power down, when the timer shut down?

Related