<?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>Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126484/thingy91x---wake-from-system-off</link><description>Hi, 
 We&amp;#39;re coming to the end of prototyping a project on the Thingy91X and are fine-tuning the power management. We have been able to implement a simple demo on the nrf9151dk and wanted to port this to our own code on the Thingy91X. Although very simple</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 04 Feb 2026 12:03:57 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126484/thingy91x---wake-from-system-off" /><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/560328?ContentTypeID=1</link><pubDate>Wed, 04 Feb 2026 12:03:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:25805818-44b1-4a61-b318-9e494c994cfe</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;Hi Marte,&lt;br /&gt;&lt;br /&gt;That worked perfectly.&amp;nbsp; Thank you :-).&lt;br /&gt;&lt;br /&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Andy&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/560113?ContentTypeID=1</link><pubDate>Mon, 02 Feb 2026 11:59:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5caf53c1-3db4-4c6f-a44e-26a2770973cb</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you for clarifying.&lt;/p&gt;
[quote user="andychess"]If the shutdown routine included in the sample I posted, requires additional steps to shutdown and or start the RPC, please let me know, so that we can test further.&amp;nbsp; &amp;nbsp;&amp;nbsp;[/quote]
&lt;p&gt;Shutting down the Wi-Fi interface before entering system off should fix the issue:&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/pastedimage1770033454696v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;You can shut down the Wi-Fi interface with&amp;nbsp;&lt;code&gt;net_if_down()&lt;/code&gt;:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;int shutdown_wifi()
{
	int ret;
  struct net_if *iface = net_if_get_default();

	if (!net_if_is_admin_up(iface)) {
		return 0;
	}

	ret = net_if_down(iface);
	if (ret) {
		LOG_ERR(&amp;quot;Cannot bring down iface (%d)&amp;quot;, ret);
		return ret;
	}

	LOG_INF(&amp;quot;Interface down&amp;quot;);

	return 0;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Then call this function before&amp;nbsp;&lt;code&gt;NRF_REGULATORS-&amp;gt;SYSTEMOFF = 1&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Make sure to include the net_if file so that you can use &lt;code&gt;net_if_down()&lt;/code&gt;:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#include &amp;lt;zephyr/net/net_if.h&amp;gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/560078?ContentTypeID=1</link><pubDate>Mon, 02 Feb 2026 08:15:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ebdfe813-220a-49c0-bdd1-04f94e7ab483</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;I might has expressed that badly.&amp;nbsp; The test unit isn&amp;#39;t able to use system off at all, because of the wakeup problems which are the subject of the ticket.&amp;nbsp; We have a second Thingy 91X, field trialling a different firmware, which doesn&amp;#39;t feature WiFi and this shuts down and starts as expected.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;If the shutdown routine included in the sample I posted, requires additional steps to shutdown and or start the RPC, please let me know, so that we can test further.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/559979?ContentTypeID=1</link><pubDate>Fri, 30 Jan 2026 09:29:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7d22e759-335d-4afb-968a-53391d96e233</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
[quote user="andychess"]We deployed a first Thingy, using WiFi locating, to field trials in the UK last week and the battery is only lasting for 7 days without a full shutdown.&amp;nbsp; [/quote]
&lt;p&gt;Is this using system OFF and has the RPU enable failed error? The Wi-Fi interface should shut down between scans when using the location library.&lt;/p&gt;
&lt;p&gt;Do you get the RPU enable failed error if you shut down the Wi-Fi interface before going into system off?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/559712?ContentTypeID=1</link><pubDate>Tue, 27 Jan 2026 15:57:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:aeb9ba44-9433-486c-978e-8041805f3e0d</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have asked about it internally, and I am waiting for a response.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/559634?ContentTypeID=1</link><pubDate>Tue, 27 Jan 2026 08:31:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5f3fc7f1-67ac-433e-b8d5-4ece7f779261</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;Hi Marte,&lt;/p&gt;
&lt;p&gt;Can you give me any update on this?&amp;nbsp; We deployed a first Thingy, using WiFi locating, to field trials in the UK last week and the battery is only lasting for 7 days without a full shutdown.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;We have a second design in the lab that doesn&amp;#39;t require WiFi location finding and this is&amp;nbsp;sleeping quite happily at 1.8uA, which was much closer to our expectation.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;&lt;br /&gt;Andy&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/559045?ContentTypeID=1</link><pubDate>Mon, 19 Jan 2026 14:15:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:96bba458-2107-41a4-8dcb-11c34e9a7cca</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I can reproduce the issue on my side. It seems like there might be a timing issue with the startup sequence. I will look more into this and get back to you.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/558697?ContentTypeID=1</link><pubDate>Wed, 14 Jan 2026 12:20:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f175ca12-9ad3-4474-888d-8c22d9ca241c</guid><dc:creator>andychess</dc:creator><description>&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/pastedimage1768393241393v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/558696?ContentTypeID=1</link><pubDate>Wed, 14 Jan 2026 12:19:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a39173fb-e9a5-4655-996c-7f101f6a6566</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;Hi Marte,&lt;br /&gt;&lt;br /&gt;Please find the bare-bones project attached.&amp;nbsp; You should see the error immediately.&amp;nbsp; Please note, that after building without the sysbuild.conf, the sample works without errors.&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/thingy91x_5F00_lab.zip"&gt;devzone.nordicsemi.com/.../thingy91x_5F00_lab.zip&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy91X - Wake from System OFF</title><link>https://devzone.nordicsemi.com/thread/558680?ContentTypeID=1</link><pubDate>Wed, 14 Jan 2026 10:23:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a9f21b98-5a58-462f-889a-f282b44c880c</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Can you share your code with me so I can try to reproduce the issue? Upload the project as a zip file without the build folder. If you do not want to upload the project to a public ticket, let me know, and I can make it private.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>