Baseline Power Consumption Benchmarking on nrf52dk

Hello Nordic Forum,

I ran the Power Profiler Kit on an nRF52DK development board to establish a baseline power consumption.

The current firmware project is quite simple, and I have removed most of the GPIO, including UART, to minimize power consumption.

I have not enabled power management yet, as I am focusing on benchmarking the current power usage.

Currently, the kit reads about 23.25 mA while running in the main loop. Does this seem reasonable?

Would I expect to achieve a significant reduction in consumption if I enable Power Management, or would this only be beneficial when I add sensors that implement power management interfaces?

Thank you in advance for your knowledge and support.

Kind regards,


while (1) {
k_sleep(K_FOREVER);
}

CONFIG_CPP=y
CONFIG_GPIO=y
CONFIG_I2C=y
CONFIG_I2C_NRFX=y
CONFIG_CBPRINTF_FP_SUPPORT=y
CONFIG_DEBUG=y
CONFIG_PRINTK=y
CONFIG_LOG=y
Parents Reply Children
  • Do you see the same floor current if you increase the supply voltage from 2.9 to 3v in the PPK SW? I measured the VDD to be 2.9V on my nRF52 DK when I did the measurements earlier so that is how I ended up with that value. It would also be interesting to know if you get the same result if you use the ampere mode instead (see DK and PPK user guide for how to hook up the board for this)

    federicoc said:
    If it is OFF the mcu is not running.

    As far as I remember, VDD_nrf will be supplied so the nRF52832 should be running, but not the interface MCU and the other circuits that are on a separate power domain.

Related