I'm trying to reduce the power consumption of my custom board with nrf52822.
With this code I get 93 uA:
int main(void)
{
while(1) {
__WFE();
__SEV();
__WFE();
}
}
If I enable only the app_timer I get 533 uA:
int main(void)
{
nrf_pwr_mgmt_init();
app_timer_init();
while(1) {
__WFE();
__SEV();
__WFE();
}
}
I'm using "RC" "..._LF_SRC" in "sdk_config.h".
What I'm doing wrong?
app_timer is not really required in my appliaction but I found that it is used in "conn_params_init".