Hello everyone,
I'm using the nrf52840 Dev Kit (PCA10056 1.1.0 2019.19 683465548)
SDK version: 15.3
OS: Fedora
I work on a custom board and try to put it in SYSTEM ON mode like so:
int main(void)
{
log_init();
NRF_LOG_INFO("App start\n");
NRF_LOG_FLUSH();
power_management_init();
for (;;) {
nrf_pwr_mgmt_run();
}
}
When I measure my consommation with OTII I get 4 mA instead of 1.5 uA according to this link (Debugging: Section 4).
Any ideas?
Regards,
Louis