Hi,
I am using nordic nrf52832 nRF5_SDK_14.2.0, I use the RTT for debug, I want MCU in low power mode,so I add the following code:
while(1)
{
NRF_POWER->SYSTEMOFF = 1;
}
when running this loop, the power consume from 15.25mADC to 11.48mADC
But when I use the following code:
while(1)
{
__SEV();
__WFE();
__WFE();
NRF_POWER->SYSTEMOFF = 1;
}
when running this loop, the power consume from 15.25mADC to 9.14mADC
Why these two loop consume different current ?
Except the nordic chip, It also have four chips in my PCBA , sorry I am the new user, can someone answer me?