Power Consumption during sleep mode in NRF52832

I am using NRF52832 Custom Board and Have to implement deep sleep for 1 minute and have to limit the current consumption to a very minimal value during the sleep cycle
 I have just enabled the log and used the below sleep function

#include <stdio.h>
#include <zephyr/sys/printk.h>
#include <zephyr/kernel.h>

int main(void)
{
    printk("Hello World! %s\n", CONFIG_BOARD);
    while(1){
        printk("Entering Sleep\n");
        k_msleep(60000);
    }
    return 0;
}
But when tracking the current consumption, I am getting roughly around 10mA which is huge for my application. How should I reduce the current consumption to uA. I have to use two SPI Pheripherals as well
Parents
  • Hi

    6.4mA is too much to possibly be the nRF52832 in any idle mode. Even with the CPU being left running you should see 4mA here. I'm not familiar with the EFR32, but how exactly is it used to measure current here? Do you have a dedicated power analyzer or the PPK2 for current measurement? If the nRF actually draws an average of 6.4mA, it must be the radio that is on, but in that case it seems strange that the current is as stable as it is, so I think there is some hefty leakage somewhere here.

    In the ~470µA range it is, as mentioned in the bottom of the power optimization guide, likely due to a peripheral being left on, like UART logging, or SPI being kept on for example. However since there seems to be some leakage that might not be it, and I think we should start by trying to reproduce this on an nRF52832 DK if you have one available to measure on.

    Best regards,

    Simon

Reply
  • Hi

    6.4mA is too much to possibly be the nRF52832 in any idle mode. Even with the CPU being left running you should see 4mA here. I'm not familiar with the EFR32, but how exactly is it used to measure current here? Do you have a dedicated power analyzer or the PPK2 for current measurement? If the nRF actually draws an average of 6.4mA, it must be the radio that is on, but in that case it seems strange that the current is as stable as it is, so I think there is some hefty leakage somewhere here.

    In the ~470µA range it is, as mentioned in the bottom of the power optimization guide, likely due to a peripheral being left on, like UART logging, or SPI being kept on for example. However since there seems to be some leakage that might not be it, and I think we should start by trying to reproduce this on an nRF52832 DK if you have one available to measure on.

    Best regards,

    Simon

Children
No Data
Related