nRF52832-QFAA-0E, S132
With DCDC, UART and SoftDeivce enabled my ammeter shows 1.3 mA, but when app calls sd_softdevice_disable() current actually increases to ~4 mA
The test sequence is the following:
sd_softdevice_disable(); NRF_P0->LATCH = -1; for(int i = 10000000; i && NRF_P0->LATCH == 0; --i) nrf_pwr_mgmt_run();
I expected current to decrease. What could be wrong?