Hi all,
SDK Version: v2.5.0
Modem FW: v1.3.5
Board: NRF9160DK
Build configuration: nrf9160dk_nrf9160_ns
I've been trying to get SYSTEM_OFF to work on my dev-kit with no success, it seems to just sit around 3.6mA when I measure with my PPK2
I did find an example here:
With a precompiled .hex, and when I used nrfjprog to flash that I read an average of 2.6uA
This is my code I use when I read 3.6mA
#include <modem/lte_lc.h> void main(void) { lte_lc_power_off(); k_sleep(K_MSEC(1000)); NRF_REGULATORS->SYSTEMOFF = 1; }
and my prj.conf
CONFIG_LTE_LINK_CONTROL=y CONFIG_DEBUG=n
I'll also attach the whole project just in case