<?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>System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/123783/system-on-high-current-when-wifi-is-disconnected</link><description>Hi, 
 We are evaluating NRF5340+NRF7002 setup for our customer. We are currently using https client example(sdk v3.0.2) and we would like to benchmark current consumption of the individual chips.I have set up the PPK2s as explained in your technical documentation</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 18 Sep 2025 12:28:34 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/123783/system-on-high-current-when-wifi-is-disconnected" /><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/549174?ContentTypeID=1</link><pubDate>Thu, 18 Sep 2025 12:28:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a5c04a3f-f1a7-45ba-9382-888bac8a3c4b</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi Arjun,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am very glad to hear that you also see similar results now. I will take this up internally with the wifi team to address this pinctrl configuration.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/548932?ContentTypeID=1</link><pubDate>Tue, 16 Sep 2025 18:22:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:007e2e0a-e90a-4a64-b0ed-f9211a35dedd</guid><dc:creator>Arjun-Prasad</dc:creator><description>&lt;p&gt;Hi Hakon,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thats it! I can reproduce the current consumption here as well. Thanks a lot. Much appreciated.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Arjun&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/548593?ContentTypeID=1</link><pubDate>Fri, 12 Sep 2025 11:41:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e482ad80-0baa-40a8-b0b8-0bd494c0560a</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi Arjun,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I tested the same version as you, and I can confirm that I see similar results (around 360 uA):&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/0638.pastedimage1757674085610v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I think there are two problems here:&lt;/p&gt;
&lt;p&gt;1. GPIOTE IN channel used for HOST_IRQ&lt;/p&gt;
&lt;p&gt;2. QSPI IO1 (MISO line) and IO3 looks to be idle high.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The first is forced by using GPIOTE PORT event for wakeup/IRQ. Second is fixed by setting&amp;nbsp;the two&amp;nbsp;pins to floating (ie. expected driven by nRF7002)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you try the following overlay?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;pinctrl {
	qspi_test: qspi_test {
		group1 {
			psels = &amp;lt;NRF_PSEL(QSPI_SCK, 0, 17)&amp;gt;, 
					&amp;lt;NRF_PSEL(QSPI_IO2, 0, 15)&amp;gt;;
			bias-pull-down;
		};
		group2 {
			psels = &amp;lt;NRF_PSEL(QSPI_CSN, 0, 18)&amp;gt;,
					&amp;lt;NRF_PSEL(QSPI_IO0, 0, 13)&amp;gt;;
			bias-pull-up;
		};
		group3 {
			psels = &amp;lt;NRF_PSEL(QSPI_IO1, 0, 14)&amp;gt;,
					&amp;lt;NRF_PSEL(QSPI_IO3, 0, 16)&amp;gt;;
		};
	};
};

&amp;amp;gpio0 {
    sense-edge-mask = &amp;lt;(1 &amp;lt;&amp;lt; 23)&amp;gt;;
};

&amp;amp;qspi {
	status = &amp;quot;okay&amp;quot;;
	pinctrl-0 = &amp;lt;&amp;amp;qspi_test&amp;gt;;
	pinctrl-1 = &amp;lt;&amp;amp;qspi_sleep&amp;gt;;
	pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I used wifi/sta sample, with these added configs:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_LOG=n
CONFIG_PINCTRL=y
CONFIG_NET_LOG=n
CONFIG_CONSOLE=n
CONFIG_SERIAL=n
CONFIG_DEBUG_COREDUMP=n
CONFIG_DEBUG_COREDUMP_BACKEND_LOGGING=n
CONFIG_DEBUG_COREDUMP_MEMORY_DUMP_MIN=n&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;After these I see approx 24 uA in the sleep events:&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/pastedimage1757677429683v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you check if this helps on your end as well? Please note that setting &amp;quot;sense-edge-mask&amp;quot; is for debugging purposes, as this is a lesser accuracy mode.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/548481?ContentTypeID=1</link><pubDate>Thu, 11 Sep 2025 11:21:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fe5c6761-8d40-44ec-a208-7e61a0abaca5</guid><dc:creator>Arjun-Prasad</dc:creator><description>&lt;p&gt;Hi Hakon,&lt;/p&gt;
&lt;p&gt;Thanks for the feedback and sorry for the late reply.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Q1: Yes, we also tried your modification to the wifi/sta example. You can see the results below. The base current still is above ~300uA. As you can see when the nrf7002 is in DTIM PS mode I expected that the host MCU not consume high current. This can also be tested by putting the wifi IC in twt mode. In twt mode the IC has target wakeup time. During this time host MCU pretty much will have nothing to do and yet we see base current of 300uA.&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/pastedimage1757589579612v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Q2: We are using PCA10143, 1.0.2, 2023.25 . This is what it says on the label of the DK&lt;/p&gt;
&lt;p&gt;Q3: We have done no other modification to the dev kit except closing SB17 and cutting SB16. This is as recommended for dual current measurement setup.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Arjun&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546943?ContentTypeID=1</link><pubDate>Wed, 27 Aug 2025 13:38:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7ac10f5a-c159-4386-9f9f-5d0252db01fd</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi Arjun,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Q1: Could you try to run wifi/sta, compiled for board &amp;quot;nrf7002dk/nrf5340/cpuapp&amp;quot; with the configuration that I suggested to see if this yields expected results?&lt;/p&gt;
&lt;p&gt;Q2: Which revision of the nRF7002-DK do you have?&lt;/p&gt;
&lt;p&gt;Q3: There is a statical current in your measurements, ie. the current is flat at around 300 uA, indicating a resistive load.&lt;/p&gt;
&lt;p&gt;Have you altered the external flash connection? Ie. Have you tried cutting SB8 and soldering SB10 to connect the ext flash to the VDDMEAS net?&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ug_nrf7002_dk/page/UG/nrf7002_DK/solder_bridge.html"&gt;https://docs.nordicsemi.com/bundle/ug_nrf7002_dk/page/UG/nrf7002_DK/solder_bridge.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546816?ContentTypeID=1</link><pubDate>Tue, 26 Aug 2025 20:17:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:58123f91-afd1-453a-b223-7f6bd805f6d4</guid><dc:creator>Arjun-Prasad</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;H&amp;aring;kon,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I tried to reproduce what you said but I am still not able to achieve a low current when nrf5340 is in idle state. I would like to give you a detailed description of what I am trying to do here so that if possible, you can reproduce the behavior I have.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Hardware: nrf7002dk&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Software version: ncs v3.0.2&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;example:&amp;nbsp;samples/net/https_client&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Measurement setup:&amp;nbsp;&lt;a id="" href="https://docs.nordicsemi.com/bundle/ug_nrf7002_dk/page/UG/nrf7002_DK/nRF5340_nRF7002_measure_current.html"&gt;https://docs.nordicsemi.com/bundle/ug_nrf7002_dk/page/UG/nrf7002_DK/nRF5340_nRF7002_measure_current.html&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Note: Modify&amp;nbsp;CONFIG_WIFI_CREDENTIALS_STATIC_SSID and&amp;nbsp;CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD to your network setup.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Scenario 1:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Below is a patch that you can directly apply to the https_client example.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="text"&gt;diff --git a/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf b/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
index 3167ed614d..9c2b3e2d26 100644
--- a/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
+++ b/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
@@ -23,9 +23,9 @@ CONFIG_WIFI_NRF70_LOG_LEVEL_ERR=y
 CONFIG_WIFI_CREDENTIALS=y
 
 # Shell
-CONFIG_SHELL=y
-CONFIG_SHELL_STACK_SIZE=6144
-CONFIG_NET_L2_WIFI_SHELL=y
+#CONFIG_SHELL=y
+#CONFIG_SHELL_STACK_SIZE=6144
+#CONFIG_NET_L2_WIFI_SHELL=y
 
 # WPA supplicant
 CONFIG_WIFI_NM_WPA_SUPPLICANT=y
@@ -70,3 +70,11 @@ CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION=y
 CONFIG_TFM_PROFILE_TYPE_SMALL=y
 CONFIG_PM_PARTITION_SIZE_TFM_SRAM=0xc000
 CONFIG_PM_PARTITION_SIZE_TFM=0x20000
+
+# Disable UART
+CONFIG_LOG=n
+CONFIG_PRINTK=n
+CONFIG_NCS_BOOT_BANNER=n
+CONFIG_BOOT_BANNER=n
+CONFIG_SERIAL=n
+CONFIG_TFM_LOG_LEVEL_SILENCE=y
diff --git a/samples/net/https_client/prj.conf b/samples/net/https_client/prj.conf
index 799bda7db1..6bbd167148 100644
--- a/samples/net/https_client/prj.conf
+++ b/samples/net/https_client/prj.conf
@@ -19,3 +19,8 @@ CONFIG_NET_IPV4=y
 CONFIG_NET_IPV6=y
 CONFIG_NET_CONNECTION_MANAGER=y
 CONFIG_NET_CONNECTION_MANAGER_MONITOR_STACK_SIZE=4600
+
+CONFIG_WIFI_CREDENTIALS_STATIC=y
+CONFIG_WIFI_CREDENTIALS_STATIC_SSID=&amp;quot;MySSID&amp;quot;        # &amp;lt;- Modify this
+CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD=&amp;quot;MyPwd&amp;quot;      # &amp;lt;- Modify this
+CONFIG_WIFI_CREDENTIALS_STATIC_TYPE_PSK=y                # &amp;lt;- Modify this
\ No newline at end of file
diff --git a/samples/net/https_client/src/main.c b/samples/net/https_client/src/main.c
index 754f98d9d1..7c4118a72e 100644
--- a/samples/net/https_client/src/main.c
+++ b/samples/net/https_client/src/main.c
@@ -351,10 +351,13 @@ int main(void)
 
 	k_sem_take(&amp;amp;network_connected_sem, K_FOREVER);
 
-	send_http_request();
+	while(1)
+	{
+		send_http_request();
 
-	/* A small delay for the TCP connection teardown */
-	k_sleep(K_SECONDS(1));
+		/* Idle time */
+		k_sleep(K_SECONDS(20));
+	}
 
 	/* The HTTP transaction is done, take the network connection down */
 	err = conn_mgr_all_if_disconnect(true);&lt;/pre&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="text"&gt;west build -b nrf7002dk/nrf5340/cpuapp/ns -p always
west flash&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;As you can notice now in the&amp;nbsp;patch I have disabled the use of console and can confirm that there is nothing on both uart0(ttyACM0) and uart1(ttyACM1). The application is altered to send http request in a loop with 20 seconds idle time between requests. With this setup below is the power profile of the nrf7002(left) and nrf5340(right).&amp;nbsp; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Both device can be seen to some activity when https request is being sent before going to idle mode(nrf5340) and dtim mode(nr7002)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Also one&amp;nbsp;can see the base current of nrf5340 always stays above 300uA during idle time(20 seconds) which I am not sure why. Please note that this is the case even if I put the nrf7002 in twt mode or extended PS mode(DTIM skip)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1756237293713v1.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Scenario&amp;nbsp;2:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Revert the changes to https client and apply the patch below which in addition to sending http request in a loop also connects and disconnects from AP. In this case you can notice that nrf7002 power consumption is low ~15.8uA but the nrf5340 idle current still remains above ~300uA&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="text"&gt;diff --git a/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf b/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
index 3167ed614d..9c2b3e2d26 100644
--- a/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
+++ b/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
@@ -23,9 +23,9 @@ CONFIG_WIFI_NRF70_LOG_LEVEL_ERR=y
 CONFIG_WIFI_CREDENTIALS=y
 
 # Shell
-CONFIG_SHELL=y
-CONFIG_SHELL_STACK_SIZE=6144
-CONFIG_NET_L2_WIFI_SHELL=y
+#CONFIG_SHELL=y
+#CONFIG_SHELL_STACK_SIZE=6144
+#CONFIG_NET_L2_WIFI_SHELL=y
 
 # WPA supplicant
 CONFIG_WIFI_NM_WPA_SUPPLICANT=y
@@ -70,3 +70,11 @@ CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION=y
 CONFIG_TFM_PROFILE_TYPE_SMALL=y
 CONFIG_PM_PARTITION_SIZE_TFM_SRAM=0xc000
 CONFIG_PM_PARTITION_SIZE_TFM=0x20000
+
+# Disable UART
+CONFIG_LOG=n
+CONFIG_PRINTK=n
+CONFIG_NCS_BOOT_BANNER=n
+CONFIG_BOOT_BANNER=n
+CONFIG_SERIAL=n
+CONFIG_TFM_LOG_LEVEL_SILENCE=y
diff --git a/samples/net/https_client/prj.conf b/samples/net/https_client/prj.conf
index 799bda7db1..6bbd167148 100644
--- a/samples/net/https_client/prj.conf
+++ b/samples/net/https_client/prj.conf
@@ -19,3 +19,8 @@ CONFIG_NET_IPV4=y
 CONFIG_NET_IPV6=y
 CONFIG_NET_CONNECTION_MANAGER=y
 CONFIG_NET_CONNECTION_MANAGER_MONITOR_STACK_SIZE=4600
+
+CONFIG_WIFI_CREDENTIALS_STATIC=y
+CONFIG_WIFI_CREDENTIALS_STATIC_SSID=&amp;quot;MySSID&amp;quot;        # &amp;lt;- Modify this
+CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD=&amp;quot;MyPWD&amp;quot;      # &amp;lt;- Modify this
+CONFIG_WIFI_CREDENTIALS_STATIC_TYPE_PSK=y                # &amp;lt;- Modify this
\ No newline at end of file
diff --git a/samples/net/https_client/src/main.c b/samples/net/https_client/src/main.c
index 754f98d9d1..7647d6bc63 100644
--- a/samples/net/https_client/src/main.c
+++ b/samples/net/https_client/src/main.c
@@ -331,35 +331,40 @@ int main(void)
 		return 0;
 	}
 
-	printk(&amp;quot;Connecting to the network\n&amp;quot;);
+	while(1)
+	{
+		printk(&amp;quot;Connecting to the network\n&amp;quot;);
 
-	err = conn_mgr_all_if_connect(true);
-	if (err) {
-		printk(&amp;quot;conn_mgr_all_if_connect, error: %d\n&amp;quot;, err);
-		return 0;
-	}
+		err = conn_mgr_all_if_connect(true);
+		if (err) {
+			printk(&amp;quot;conn_mgr_all_if_connect, error: %d\n&amp;quot;, err);
+			return 0;
+		}
 
-	/* Resend connection status if the sample is built for NATIVE_SIM.
-	 * This is necessary because the network interface is automatically brought up
-	 * at SYS_INIT() before main() is called.
-	 * This means that NET_EVENT_L4_CONNECTED fires before the
-	 * appropriate handler l4_event_handler() is registered.
-	 */
-	if (IS_ENABLED(CONFIG_BOARD_NATIVE_SIM)) {
-		conn_mgr_mon_resend_status();
-	}
+		/* Resend connection status if the sample is built for NATIVE_SIM.
+		* This is necessary because the network interface is automatically brought up
+		* at SYS_INIT() before main() is called.
+		* This means that NET_EVENT_L4_CONNECTED fires before the
+		* appropriate handler l4_event_handler() is registered.
+		*/
+		if (IS_ENABLED(CONFIG_BOARD_NATIVE_SIM)) {
+			conn_mgr_mon_resend_status();
+		}
 
-	k_sem_take(&amp;amp;network_connected_sem, K_FOREVER);
+		k_sem_take(&amp;amp;network_connected_sem, K_FOREVER);
 
-	send_http_request();
+		send_http_request();
 
-	/* A small delay for the TCP connection teardown */
-	k_sleep(K_SECONDS(1));
+		k_sleep(K_SECONDS(1));
 
-	/* The HTTP transaction is done, take the network connection down */
-	err = conn_mgr_all_if_disconnect(true);
-	if (err) {
-		printk(&amp;quot;conn_mgr_all_if_disconnect, error: %d\n&amp;quot;, err);
+		/* The HTTP transaction is done, take the network connection down */
+		err = conn_mgr_all_if_disconnect(true);
+		if (err) {
+			printk(&amp;quot;conn_mgr_all_if_disconnect, error: %d\n&amp;quot;, err);
+		}
+
+		/* Idle time */
+		k_sleep(K_SECONDS(20));
 	}
 
 	err = conn_mgr_all_if_down(true);&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1756238172142v2.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Scenario&amp;nbsp;3:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Revert the changes to https client and apply the patch below which also adds network interface setup(conn_mgr_all_if_up) and teardown(conn_mgr_all_if_down) in the loop. In this case you can notice that nrf7002 in lowest power state ~1.7uA&amp;nbsp;and the nrf5340 idle current now reduces to ~130 uA.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="text"&gt;diff --git a/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf b/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
index 3167ed614d..9c2b3e2d26 100644
--- a/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
+++ b/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
@@ -23,9 +23,9 @@ CONFIG_WIFI_NRF70_LOG_LEVEL_ERR=y
 CONFIG_WIFI_CREDENTIALS=y
 
 # Shell
-CONFIG_SHELL=y
-CONFIG_SHELL_STACK_SIZE=6144
-CONFIG_NET_L2_WIFI_SHELL=y
+#CONFIG_SHELL=y
+#CONFIG_SHELL_STACK_SIZE=6144
+#CONFIG_NET_L2_WIFI_SHELL=y
 
 # WPA supplicant
 CONFIG_WIFI_NM_WPA_SUPPLICANT=y
@@ -70,3 +70,11 @@ CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION=y
 CONFIG_TFM_PROFILE_TYPE_SMALL=y
 CONFIG_PM_PARTITION_SIZE_TFM_SRAM=0xc000
 CONFIG_PM_PARTITION_SIZE_TFM=0x20000
+
+# Disable UART
+CONFIG_LOG=n
+CONFIG_PRINTK=n
+CONFIG_NCS_BOOT_BANNER=n
+CONFIG_BOOT_BANNER=n
+CONFIG_SERIAL=n
+CONFIG_TFM_LOG_LEVEL_SILENCE=y
diff --git a/samples/net/https_client/prj.conf b/samples/net/https_client/prj.conf
index 799bda7db1..6bbd167148 100644
--- a/samples/net/https_client/prj.conf
+++ b/samples/net/https_client/prj.conf
@@ -19,3 +19,8 @@ CONFIG_NET_IPV4=y
 CONFIG_NET_IPV6=y
 CONFIG_NET_CONNECTION_MANAGER=y
 CONFIG_NET_CONNECTION_MANAGER_MONITOR_STACK_SIZE=4600
+
+CONFIG_WIFI_CREDENTIALS_STATIC=y
+CONFIG_WIFI_CREDENTIALS_STATIC_SSID=&amp;quot;MySSID&amp;quot;        # &amp;lt;- Modify this
+CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD=&amp;quot;MyPWD&amp;quot;      # &amp;lt;- Modify this
+CONFIG_WIFI_CREDENTIALS_STATIC_TYPE_PSK=y                # &amp;lt;- Modify this
\ No newline at end of file
diff --git a/samples/net/https_client/src/main.c b/samples/net/https_client/src/main.c
index 754f98d9d1..3ce5743c17 100644
--- a/samples/net/https_client/src/main.c
+++ b/samples/net/https_client/src/main.c
@@ -314,57 +314,63 @@ int main(void)
 	net_mgmt_init_event_callback(&amp;amp;conn_cb, connectivity_event_handler, CONN_LAYER_EVENT_MASK);
 	net_mgmt_add_event_callback(&amp;amp;conn_cb);
 
-	printk(&amp;quot;Bringing network interface up\n&amp;quot;);
+	while(1)
+	{
+		printk(&amp;quot;Bringing network interface up\n&amp;quot;);
+
+		/* Connecting to the configured connectivity layer.
+		* Wi-Fi or LTE depending on the board that the sample was built for.
+		*/
+		err = conn_mgr_all_if_up(true);
+		if (err) {
+			printk(&amp;quot;conn_mgr_all_if_up, error: %d\n&amp;quot;, err);
+			return err;
+		}
 
-	/* Connecting to the configured connectivity layer.
-	 * Wi-Fi or LTE depending on the board that the sample was built for.
-	 */
-	err = conn_mgr_all_if_up(true);
-	if (err) {
-		printk(&amp;quot;conn_mgr_all_if_up, error: %d\n&amp;quot;, err);
-		return err;
-	}
+		/* Provision certificates before connecting to the network */
+		err = cert_provision();
+		if (err) {
+			return 0;
+		}
 
-	 /* Provision certificates before connecting to the network */
-	err = cert_provision();
-	if (err) {
-		return 0;
-	}
+		printk(&amp;quot;Connecting to the network\n&amp;quot;);
 
-	printk(&amp;quot;Connecting to the network\n&amp;quot;);
+		err = conn_mgr_all_if_connect(true);
+		if (err) {
+			printk(&amp;quot;conn_mgr_all_if_connect, error: %d\n&amp;quot;, err);
+			return 0;
+		}
 
-	err = conn_mgr_all_if_connect(true);
-	if (err) {
-		printk(&amp;quot;conn_mgr_all_if_connect, error: %d\n&amp;quot;, err);
-		return 0;
-	}
+		/* Resend connection status if the sample is built for NATIVE_SIM.
+		* This is necessary because the network interface is automatically brought up
+		* at SYS_INIT() before main() is called.
+		* This means that NET_EVENT_L4_CONNECTED fires before the
+		* appropriate handler l4_event_handler() is registered.
+		*/
+		if (IS_ENABLED(CONFIG_BOARD_NATIVE_SIM)) {
+			conn_mgr_mon_resend_status();
+		}
 
-	/* Resend connection status if the sample is built for NATIVE_SIM.
-	 * This is necessary because the network interface is automatically brought up
-	 * at SYS_INIT() before main() is called.
-	 * This means that NET_EVENT_L4_CONNECTED fires before the
-	 * appropriate handler l4_event_handler() is registered.
-	 */
-	if (IS_ENABLED(CONFIG_BOARD_NATIVE_SIM)) {
-		conn_mgr_mon_resend_status();
-	}
+		k_sem_take(&amp;amp;network_connected_sem, K_FOREVER);
 
-	k_sem_take(&amp;amp;network_connected_sem, K_FOREVER);
+		send_http_request();
 
-	send_http_request();
+		k_sleep(K_SECONDS(1));
 
-	/* A small delay for the TCP connection teardown */
-	k_sleep(K_SECONDS(1));
+		/* The HTTP transaction is done, take the network connection down */
+		err = conn_mgr_all_if_disconnect(true);
+		if (err) {
+			printk(&amp;quot;conn_mgr_all_if_disconnect, error: %d\n&amp;quot;, err);
+		}
 
-	/* The HTTP transaction is done, take the network connection down */
-	err = conn_mgr_all_if_disconnect(true);
-	if (err) {
-		printk(&amp;quot;conn_mgr_all_if_disconnect, error: %d\n&amp;quot;, err);
-	}
+		err = conn_mgr_all_if_down(true);
 
-	err = conn_mgr_all_if_down(true);
-	if (err) {
-		printk(&amp;quot;conn_mgr_all_if_down, error: %d\n&amp;quot;, err);
+		if (err) {
+			printk(&amp;quot;conn_mgr_all_if_down, error: %d\n&amp;quot;, err);
+		}
+
+		/* Idle time */
+		k_sleep(K_SECONDS(20));
 	}
 
 	return 0;&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1756238461568v3.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I also applied the change you suggested to&amp;nbsp;/CSN pin you suggested just before going to sleep in the main thread and this does not improve the idle current.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For our customer the scenario 1 is the main requirement because at the moment connect API takes a long time as discussed before due to the crypto backend. So, we would like to reduce wakeup time and also use twt or DTIM skip to reduce power consumption as much as possible on both ICs. But it looks like we are not able to reduce idle base current of nrf5340(host MCU) at the moment. We would like to understand why and whether this a limitation we cannot avoid as we were under the assumption that when nrf7002 stays in power saving state the host mcu should also consume as low power as possible.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Apologies for long post. But any help is greatly appreciated.&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Arjun&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546292?ContentTypeID=1</link><pubDate>Thu, 21 Aug 2025 07:15:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4a9ea540-66d7-4ecb-8e58-8be67cb70108</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi Arjun,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Sorry to hear that the current is still high!&lt;/p&gt;
&lt;p&gt;here&amp;#39;s the changes I&amp;#39;ve done to STA on ncs v3.0.2:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;diff --git a/samples/wifi/sta/prj.conf b/samples/wifi/sta/prj.conf
index 1be8a75a11..04f897e110 100644
--- a/samples/wifi/sta/prj.conf
+++ b/samples/wifi/sta/prj.conf
@@ -13,8 +13,8 @@ CONFIG_NRF_WIFI_RPU_RECOVERY=y
 
 CONFIG_WIFI_CREDENTIALS=y
 CONFIG_WIFI_CREDENTIALS_STATIC=y
-CONFIG_WIFI_CREDENTIALS_STATIC_SSID=&amp;quot;Myssid&amp;quot;
-CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD=&amp;quot;Mypassword&amp;quot;
+CONFIG_WIFI_CREDENTIALS_STATIC_SSID=&amp;quot;OpenWrt&amp;quot;
+CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD=&amp;quot;redacted&amp;quot;
 
 # Networking
 CONFIG_NETWORKING=y
@@ -82,3 +82,5 @@ CONFIG_NET_CONFIG_MY_IPV4_GW=&amp;quot;192.168.1.1&amp;quot;
 # design in net_mgmt. So, use a higher timeout for a crowded
 # environment.
 CONFIG_NET_MGMT_EVENT_QUEUE_TIMEOUT=5000
+CONFIG_SERIAL=n
+CONFIG_PINCTRL=y
diff --git a/samples/wifi/sta/src/main.c b/samples/wifi/sta/src/main.c
index 0402216e27..445b07d6bd 100644
--- a/samples/wifi/sta/src/main.c
+++ b/samples/wifi/sta/src/main.c
@@ -401,11 +401,11 @@ static int register_wifi_ready(void)
        return ret;
 }
 #endif /* CONFIG_WIFI_READY_LIB */
-
+#include &amp;lt;hal/nrf_gpio.h&amp;gt;
 int main(void)
 {
        int ret = 0;
-
+       nrf_gpio_cfg_input(18, NRF_GPIO_PIN_PULLUP);
        net_mgmt_callback_init();
 
 #ifdef CONFIG_WIFI_READY_LIB
&lt;/pre&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And here&amp;#39;s the current consumption of the nRF5340:&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/pastedimage1755760405455v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Let me know if this helps.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546226?ContentTypeID=1</link><pubDate>Wed, 20 Aug 2025 14:56:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d398b655-9c05-4d2b-a1f3-7642fba79166</guid><dc:creator>Arjun-Prasad</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you. I tried but it didn&amp;#39;t improve for me. It seems still not possible for me to go below the 200uA. The only way to go below seems like is to bring network interface down (setting bucken and iovdd to 0) and hence powering down nrf5340. Could you share your code snippet here and I could give it a go?&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Arjun&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546219?ContentTypeID=1</link><pubDate>Wed, 20 Aug 2025 14:09:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9cc85b70-b159-4cff-b776-348df121f13d</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you have disabled the ext flash, you must ensure that the /CSN pin is set high, ie. to an idle state.&lt;/p&gt;
&lt;p&gt;If not, I also see approx. 180 uA being drawn through the VDD_MEAS net.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Try to set this for testing purposes:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#include &amp;lt;hal/nrf_gpio.h&amp;gt;

...
nrf_gpio_cfg_input(18, NRF_GPIO_PIN_PULLUP);
...&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you see if you reach the sub 20 uA target now?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546134?ContentTypeID=1</link><pubDate>Wed, 20 Aug 2025 07:29:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:db2adc26-2875-4ca9-8a98-7a20eceb7bd9</guid><dc:creator>Arjun-Prasad</dc:creator><description>&lt;p&gt;Hi Hakon,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks for getting back quickly. Appreciate that :)&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;My measurement setup is as explained here with 2 PPK2 -&amp;gt;&amp;nbsp;&lt;a id="" href="https://docs.nordicsemi.com/bundle/ug_nrf7002_dk/page/UG/nrf7002_DK/nRF5340_nRF7002_measure_current.html"&gt;https://docs.nordicsemi.com/bundle/ug_nrf7002_dk/page/UG/nrf7002_DK/nRF5340_nRF7002_measure_current.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Yes, the external flash has been disabled in the device tree. For reference I am using the https client example from NCS sdk. Below is the modification I did so that connect/disconnect is run within a loop and&amp;nbsp;measuring current draw when the nrf5340 is sleeping(k_sleep(K_SECONDS(20)))&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;	while(1)
	{
		/* Power up  console module */
		power_up_console();

		err = conn_mgr_all_if_connect(true);
		if (err) {
			printk(&amp;quot;conn_mgr_all_if_connect, error: %d\n&amp;quot;, err);
			return 0;
		}

		k_sem_take(&amp;amp;network_connected_sem, K_FOREVER);

		send_http_request();

		/* A small delay for the TCP connection teardown */
		k_sleep(K_SECONDS(1));

		/* The HTTP transaction is done, take the network connection down */
		err = conn_mgr_all_if_disconnect(true);
		if (err) {
			printk(&amp;quot;conn_mgr_all_if_disconnect, error: %d\n&amp;quot;, err);
		}

		/* Power down console module */
		power_down_console();

		k_sleep(K_SECONDS(20));
	}
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546071?ContentTypeID=1</link><pubDate>Tue, 19 Aug 2025 14:08:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7e5d5488-9e12-446b-a582-2ff146d3234f</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi Arjun,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you for sharing and explaining your test setup.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I assume you are measuring on P22?&lt;/p&gt;
&lt;p&gt;If yes, this net, &amp;quot;VDD_MEAS&amp;quot;, requires you to connect a couple of solder bridges, depending on which parts you want to measure on:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ug_nrf7002_dk/page/UG/nrf7002_DK/solder_bridge.html"&gt;https://docs.nordicsemi.com/bundle/ug_nrf7002_dk/page/UG/nrf7002_DK/solder_bridge.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;More specifically, SB10 and SB17.&lt;/p&gt;
&lt;p&gt;Have you disabled the external flash in device tree? If yes, have you ensured that the CSN pin is idle high?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546042?ContentTypeID=1</link><pubDate>Tue, 19 Aug 2025 12:21:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e5df922f-2cd2-41db-8d2e-eeff3d248d51</guid><dc:creator>Arjun-Prasad</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you for the quick response.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s not a custom design. We are using nrf7002dk.&lt;/p&gt;
&lt;p&gt;I believe IOVDD is 1.8V as nrf5340 is also powered with 1.8V.&lt;/p&gt;
&lt;p&gt;Yes, the console has been fully disabled in the example. I notice that one would have to call&amp;nbsp;&lt;span&gt;conn_mgr_all_if_down inorder to achieve low current consumption host MCU(~5uA). In disconnected state the MCU otherwise consumers ~200uA.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Arjun&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on high current when wifi is disconnected</title><link>https://devzone.nordicsemi.com/thread/546034?ContentTypeID=1</link><pubDate>Tue, 19 Aug 2025 11:48:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:636ed2c8-90a1-4f58-b3f0-9c0c18a3b550</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you keep the nRF7002 powered, the lowest sleep current is Isleep, ie. 15 uA:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf7002/page/chapters/elspec/doc/electrical_specification.html"&gt;https://docs.nordicsemi.com/bundle/ps_nrf7002/page/chapters/elspec/doc/electrical_specification.html&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
[quote user=""]We would like the application to run in a loop where it wakes up and posts some data over https and goes back to sleep. It is not possible at the moment to wakeup periodically from system off state as there is no wakeup option to achieve this without external component. Hence we would like to remain in system on state and try to achieve as low power consumption as possible when device is in sleep.[/quote]
&lt;p&gt;You can use the nRF5340 to power on/off the nRF7002 dynamically, as shown in this example:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/wifi/shutdown/README.html"&gt;https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/wifi/shutdown/README.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;This will require a full re-connect of your wifi-connection, and thus any other on-going udp/tcp socket operation.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
[quote user=""]We noticed that bringing up the net interface takes a long time due to a known bug as posted here -&amp;gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/123317/nrf7002dk-boot-up-time/545215"&gt;NRF7002DK boot up time - Nordic Q&amp;amp;A - Nordic DevZone - Nordic DevZone&lt;/a&gt;. [/quote]
&lt;p&gt;Yes, this is unfortunately a known issue at this time. It is the crypto required that takes such a long time. This is being looked into internally.&lt;/p&gt;
[quote user=""]&lt;p&gt;&lt;span&gt;Without powering down nrf7002(using these pins) it looks like it is not possible at the moment to reduce current consumption on host MCU below ~200uA.&amp;nbsp; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Could you please let me know if there is a way to achieve low power consumption (~1-10uA) in system ON keeping nrf7002 chip on and how this can be done? Else are there any other alternative approaches?&lt;/span&gt;&lt;/p&gt;[/quote]
&lt;p&gt;Is this a custom design? Is your IOVDD voltage&amp;nbsp;3V ?&lt;/p&gt;
&lt;p&gt;If so, you will notice the side-effects of this erratum:&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/errata_nRF7002_Rev1/page/ERR/nRF7002/Rev1/latest/anomaly_002_9.html#anomaly_002_9"&gt;https://docs.nordicsemi.com/bundle/errata_nRF7002_Rev1/page/ERR/nRF7002/Rev1/latest/anomaly_002_9.html#anomaly_002_9&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If IOVDD is low (ie. &amp;lt; 2.0V):&lt;/p&gt;
&lt;p&gt;Is CONFIG_SERIAL disabled on both application core and network core?&lt;/p&gt;
&lt;p&gt;Since you also mention TFM, have you disabled TFM logging as well?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>