Low power empty project

I'm working with the nrf9160 dk and trying to get a baseline low power project before I add peripherals and application code.

I'm using ncs 2.7, and with an empty project, no uart, logging, cell not enabled, etc and an empty main. the DK is sitting at about 3.1mA (running from flash, not debugging)

What do I need to do to enable low power on the application so I can get down in the single digit uA levels I read about?  Is there a switch or something on the DK I need to turn off to get to the lower power?  Are there options I need to enable in the prj.conf?


  • > about 3.1mA (running from flash, not debugging)

    Does "running" mean, the mcu runs in a busy loop? Then try to add sleeps, e.g "k_sleep(K_MSEC(1000));". That will sleep for a seconds. You may also need to suspend the UART (mainly the RX takes a couple of 100s µA). "Low Power" mainly means, "switch off" and "on" only when it's indicated, that there is something to do. 

Related