<?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>Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/120285/power-consumption-during-sleep-mode-in-nrf52832</link><description>I am using NRF52832 Custom Board and Have to implement deep sleep for 1 minute and have to limit the current consumption to a very minimal value during the sleep cycle I have just enabled the log and used the below sleep function 
 
 
 
 #include &amp;lt;stdio</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 07 Apr 2025 12:40:58 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/120285/power-consumption-during-sleep-mode-in-nrf52832" /><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/530816?ContentTypeID=1</link><pubDate>Mon, 07 Apr 2025 12:40:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2eabeff-f610-4927-b26d-d7177d022295</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;6.4mA is too much to possibly be the nRF52832 in any idle mode. Even with the CPU being left running you should see 4mA here. I&amp;#39;m not familiar with the EFR32, but how exactly is it used to measure current here? Do you have a dedicated power analyzer or the PPK2 for current measurement? If the nRF actually draws an average of 6.4mA, it must be the radio that is on, but in that case it seems strange that the current is as stable as it is, so I think there is some hefty leakage somewhere here.&lt;/p&gt;
&lt;p&gt;In the ~470µA range it is, as mentioned in&lt;a href="https://devzone.nordicsemi.com/nordic/nordic-blog/b/blog/posts/optimizing-power-on-nrf52-designs"&gt; the bottom of the power optimization guide&lt;/a&gt;, likely due to a peripheral being left on, like UART logging, or SPI being kept on for example. However since there seems to be some leakage that might not be it, and I think we should start by trying to reproduce this on an nRF52832 DK if you have one available to measure on.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/530592?ContentTypeID=1</link><pubDate>Fri, 04 Apr 2025 10:31:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:efc20545-e7b8-4cf6-a5ce-db3c26124a1c</guid><dc:creator>Thishon</dc:creator><description>&lt;p&gt;I am using an EFR32 Microcontroller by Silicon Labs to measure the current by providing 3.3V supply from it to my custom board.&lt;br /&gt;&lt;br /&gt;Logging enabled and RTT Viewer Disconnected. I am getting a sleep current of 6.4 mA. I have implemented sleep for 60s.&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/pastedimage1743760124733v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Still After Disabling the logs, I am getting the same current consumption.&lt;/p&gt;
&lt;p&gt;Sometimes I am getting the current value in uA during sleep initially after flashing and power cycling.&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/pastedimage1743762534693v4.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I am unable to figure out exactly what is happening. And what is my idle sleep current consumption. I have enabled the power management and wake up source for both of my SPI Peripherals in the device tree.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;spi2 {
	compatible = &amp;quot;nordic,nrf-spi&amp;quot;;
	status = &amp;quot;okay&amp;quot;;
	cs-gpios = &amp;lt;&amp;amp;gpio0 11 GPIO_ACTIVE_LOW&amp;gt;;
	pinctrl-0 = &amp;lt;&amp;amp;spi2_default&amp;gt;;
	pinctrl-1 = &amp;lt;&amp;amp;spi2_sleep&amp;gt;;
	pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;
	lora0: sx1262@0 {
		compatible = &amp;quot;semtech,sx1262&amp;quot;;
		reg = &amp;lt;0&amp;gt;;
		reset-gpios = &amp;lt;&amp;amp;gpio0 12 GPIO_ACTIVE_LOW&amp;gt;;
		dio1-gpios = &amp;lt;&amp;amp;gpio0 28 GPIO_PULL_DOWN&amp;gt;;
		spi-max-frequency = &amp;lt;DT_FREQ_M(8)&amp;gt;;
		busy-gpios = &amp;lt;&amp;amp;gpio0 31 0&amp;gt;;
		antenna-enable-gpios = &amp;lt;&amp;amp;gpio0 7 0&amp;gt;;
		tx-enable-gpios = &amp;lt;&amp;amp;gpio0 8 0&amp;gt;;
		wakeup-source;
		zephyr,pm-device-runtime-auto;
	};

	zephyr,pm-device-runtime-auto;
	wakeup-source;
};
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529679?ContentTypeID=1</link><pubDate>Mon, 31 Mar 2025 06:25:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0883f0b8-8afe-4504-ab1e-b17f292796ce</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Please check out our power optimization guide for some pointers on how to minimize current consumption.&amp;nbsp;&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/nordic/nordic-blog/b/blog/posts/optimizing-power-on-nrf52-designs"&gt;Optimizing Power on nRF52 Designs&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It seems like a lot of steps are already mentioned by &lt;a href="https://devzone.nordicsemi.com/members/stefan-schmidt"&gt;Stefan Schmidt&lt;/a&gt;&amp;nbsp;here, but please make sure that logging is disabled, and that any peripherals that might draw power. Please also share how exactly you&amp;#39;re measuring current in your project. Are there any other MCUs connected to the nRF52832 that might be drawing power in your design? Are the two SPI peripherals you mention connected and running for example?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529559?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 14:17:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fe741b49-b0d1-458c-a2d7-9f1c553a08c1</guid><dc:creator>Stefan Schmidt</dc:creator><description>&lt;p&gt;Uh, I did not want to start a confusing: RTT uses the debugger, no uart needed here.&lt;/p&gt;
&lt;p&gt;I mentioned the uart because I do not see your device tree/overlays and your prj.conf and wanted to give you an example where pm-device-runtime-auto is used.&lt;/p&gt;
&lt;p&gt;When you have peripherals enabled in the device tree of your custom board or in your overlay (if you are using one), you could check if the peripherals support pm-device-runtime-auto and add the setting there&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529546?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 13:49:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cf3181e8-0650-4740-9e74-3043b7ac21c6</guid><dc:creator>Thishon</dc:creator><description>&lt;p&gt;I have seen somewhere that we should enable the dcdc conversion so that the microcontroller would operate&amp;nbsp;in 3.3 V and the current consumption would be limited. I am not sure which uart I am using for RTT Viewer debugger. My setup contains the GND, DIO and CLK pins for flashing the custom board. I am using another NRF Dev Kit. Where should I add power management in my dts file&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529536?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 13:32:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:951fc609-723b-4108-81ab-2aed035ee51f</guid><dc:creator>Stefan Schmidt</dc:creator><description>&lt;p&gt;You can disable LOG and printk and try again.&lt;/p&gt;
&lt;p&gt;What is the ENABLE_DCDC in your prf.conf?&lt;/p&gt;
&lt;p&gt;You could also check that the devices in the device tree have a pinctrl set for the sleep state and that &amp;quot;zephyr,pm-device-runtime-auto;&amp;quot; is set, so that they are set to sleep after initialisation when they are not used:&lt;/p&gt;
&lt;p&gt;debug_rs232: &amp;amp;uart0 {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; status = &amp;quot;okay&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; current-speed = &amp;lt;115200&amp;gt;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pinctrl-0 = &amp;lt;&amp;amp;uart0_default&amp;gt;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pinctrl-1 = &amp;lt;&amp;amp;uart0_sleep&amp;gt;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;zephyr,pm-device-runtime-auto;&lt;/strong&gt;&lt;br /&gt;};&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529528?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 13:22:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:99849ba8-ce29-4e16-948b-c99404b3fbb8</guid><dc:creator>Thishon</dc:creator><description>&lt;p&gt;I have already disconnected the J-Link and measuring the current using power profiler kit by powering the chip on using the kit.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529527?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 13:20:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:144dfd00-3058-4111-ae5c-87bd0b3df5d2</guid><dc:creator>Stefan Schmidt</dc:creator><description>&lt;p&gt;Could you please retry the measurement with the J-Link disconnected? Like, phyiscally disconnected... No cable.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529526?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 13:14:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:71141065-f3ba-4681-9b24-916c970bf4e4</guid><dc:creator>Thishon</dc:creator><description>&lt;p&gt;I have added this configuration to prj.conf file:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_LOG&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_PRINTK&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_PM&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_PM_DEVICE&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_PM_DEVICE_RUNTIME&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BOARD_ENABLE_DCDC&lt;/span&gt;&lt;span&gt;=y&lt;br /&gt;&lt;br /&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/pastedimage1743167601630v1.png" alt=" " /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;Disconnecting the RTT Viewer I am getting around 1.8mA&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529521?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 13:08:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e0f2e7da-e440-4f47-9c87-db50d53aab77</guid><dc:creator>Stefan Schmidt</dc:creator><description>&lt;p&gt;Could you try to disconnect everything when doing the actual measurement?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529518?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 13:01:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0a2fe09d-c9fb-42e3-811a-29768f766888</guid><dc:creator>Thishon</dc:creator><description>&lt;p&gt;Yes I have RTT Viewer Connected&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Consumption during sleep mode in NRF52832</title><link>https://devzone.nordicsemi.com/thread/529515?ContentTypeID=1</link><pubDate>Fri, 28 Mar 2025 12:55:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:012d9e5a-8802-4f45-9eaf-f1becd4af857</guid><dc:creator>Stefan Schmidt</dc:creator><description>&lt;p&gt;Hi Thishon, do you have your debugger connected to the device?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>