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

nrf52 consumes 3ma in sd_app_evt_wait()

Hi,

In order to isolate the issue, I've created an app that :

1. switches to dc2dc mode.

2. calls sd_app_evt_wait() 

I still see 3ma consumption, 

sd_power_dcdc_mode_set(NRF_POWER_DCDC_ENABLE);
NRF_POWER->DCDCEN = 1;
for (;;)
{
        ret_code_t err_code = sd_app_evt_wait();
        APP_ERROR_CHECK(err_code);
}
 

any ideas? 

Related