We are using development kit for nRF52832 and trying to create the minimum current consumption that was stated in the datasheet which is 0.7uA while the system is off. However, what we are getting from current waveform analyzer is around 8uA instead while the system is off. What do I
The development kit is powered from coin cell battery, and the entire code based is this
int main(void)
{
NRF_POWER->SYSTEMOFF = 1;
}
I wonder how do I achieve the minimum power consumption that resembles what was stated in the specification for nRF52?