<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>NRF9160DK &amp;amp; System OFF</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/107351/nrf9160dk-system-off</link><description>Hi all, 
 SDK Version: v2.5.0 
 Modem FW: v1.3.5 
 Board: NRF9160DK 
 Build configuration: nrf9160dk_nrf9160_ns 
 
 I&amp;#39;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</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sun, 14 Jan 2024 05:57:28 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/107351/nrf9160dk-system-off" /><item><title>RE: NRF9160DK &amp; System OFF</title><link>https://devzone.nordicsemi.com/thread/464048?ContentTypeID=1</link><pubDate>Sun, 14 Jan 2024 05:57:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2d3b2e66-024f-4987-8164-bf307830ca4c</guid><dc:creator>-Richard-</dc:creator><description>&lt;p&gt;So I managed to solve the issue myself, seems like the modem does not power off unless you call nrf_modem_lib_init() before lte_lc_power_off.&lt;br /&gt;Now I&amp;#39;m reading an average of 2.54uA:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1705211595953v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I just had to change my code to this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#include &amp;lt;modem/lte_lc.h&amp;gt;
#include &amp;lt;modem/nrf_modem_lib.h&amp;gt;

int main(void) {
  nrf_modem_lib_init();
  lte_lc_power_off();
  k_sleep(K_MSEC(1000));
  NRF_REGULATORS-&amp;gt;SYSTEMOFF = 1;
  return 0;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;And my prj.conf to include nrf_modem_lib:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_LTE_LINK_CONTROL=y
CONFIG_LTE_AUTO_INIT_AND_CONNECT=n
CONFIG_NRF_MODEM_LIB=y&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>