Hi,
I am using nRF51822 controller for my development. I implemented the system sleep mode as below. for (;;)
{ power_manage(); }
void power_manage(void) { uint32_t err_code = sd_app_evt_wait(); APP_ERROR_CHECK(err_code); }
uint32_t sd_app_evt_wait(void) { // Use directly __WFE and __SEV macros since the SoftDevice is not available. // Wait for event. __WFE();
// Clear Event Register.
__SEV();
__WFE();
return NRF_SUCCESS;
}
Can you please let me know why it is consuming 1.15 mA continuously.
Below are the development version tools.
SD: S110(7.0.0) SDK:6.1.0 controller: nRF51822(32kb RAM variant) Adverting interval :1 Sec.
Regards, Anand