<?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>High Power Consumption on Custom nRF52811 Board (~4mA vs 17µA on DK)</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/125416/high-power-consumption-on-custom-nrf52811-board-4ma-vs-17-a-on-dk</link><description>Hardware Setup 
 Custom Board: 
 
 nRF52811 chip 
 No external LFXO (32.768 kHz crystal) 
 No LC filter for DC-DC regulator 
 No peripherals connected (no LEDs, buttons, sensors, etc.) 
 Minimal design - just the nRF chip with basic power supply 
 
 Development</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 06 Nov 2025 12:20:55 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/125416/high-power-consumption-on-custom-nrf52811-board-4ma-vs-17-a-on-dk" /><item><title>RE: High Power Consumption on Custom nRF52811 Board (~4mA vs 17µA on DK)</title><link>https://devzone.nordicsemi.com/thread/553553?ContentTypeID=1</link><pubDate>Thu, 06 Nov 2025 12:20:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d5f8e258-d38e-45b6-b775-160cf305208f</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;What SDK version are you working on here? As long as your project is not using a SoftDevice the &lt;strong&gt;N&lt;/strong&gt;&lt;span&gt;&lt;strong&gt;RF_POWER-&amp;gt;SYSTEMOFF = 1;&lt;/strong&gt; should power off the nRF52811 correctly if that&amp;#39;s the only thing you want to test.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;If the same project draws down in the micro amps on a DK but not on the custom board. You likely have the correct GPIO settings, and that points to this being a HW issue.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I think the first step should be to do a HW review. We can help you with that if you&amp;#39;d like. If you upload the schematics as a .pdf and HW layout as gerber files we can review it and see if something obvious seems off here.&lt;/span&gt;&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: High Power Consumption on Custom nRF52811 Board (~4mA vs 17µA on DK)</title><link>https://devzone.nordicsemi.com/thread/553434?ContentTypeID=1</link><pubDate>Wed, 05 Nov 2025 12:50:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:73d2c523-609c-4ff6-bc2b-91ea5368b68e</guid><dc:creator>Purvesh patel</dc:creator><description>&lt;p class="whitespace-normal break-words"&gt;Hi Simon,&lt;/p&gt;
&lt;p class="whitespace-normal break-words"&gt;Thank you for the quick response and suggestions!&lt;/p&gt;
&lt;h2 id="mcetoc_1j9a0r4e80" class="text-xl font-bold text-text-100 mt-1 -mb-0.5"&gt;Testing System OFF Mode&lt;/h2&gt;
&lt;p class="whitespace-normal break-words"&gt;To isolate whether this is a hardware or firmware/configuration issue, &lt;strong&gt;is there a way to force the nRF52811 into System OFF mode&lt;/strong&gt; to achieve absolute minimum current consumption? This would help determine if:&lt;/p&gt;
&lt;ul&gt;
&lt;li class="whitespace-normal break-words"&gt;Hardware issue: Current remains high (~3-4mA) even in deepest sleep &amp;rarr; PCB/layout problem&lt;/li&gt;
&lt;li class="whitespace-normal break-words"&gt;Configuration issue: Current drops significantly &amp;rarr; Something in firmware keeping chip awake&lt;/li&gt;
&lt;/ul&gt;
&lt;p class="whitespace-normal break-words"&gt;I tried using this code to disable everything and force sleep, but I&amp;#39;m still seeing the same ~3.66mA consumption:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;// UART
NRF_UART0-&amp;gt;ENABLE = 0;

// SPI/SPIM
NRF_SPI0-&amp;gt;ENABLE = 0;
NRF_SPIM0-&amp;gt;ENABLE = 0;
NRF_SPIM1-&amp;gt;ENABLE = 0;

// TWI/TWIM
NRF_TWI0-&amp;gt;ENABLE = 0;
NRF_TWIM0-&amp;gt;ENABLE = 0;

// Timers - CRITICAL for removing periodic wakeups
NRF_TIMER0-&amp;gt;TASKS_STOP = 1;
NRF_TIMER0-&amp;gt;TASKS_SHUTDOWN = 1;
NRF_TIMER1-&amp;gt;TASKS_STOP = 1;
NRF_TIMER1-&amp;gt;TASKS_SHUTDOWN = 1;
NRF_TIMER2-&amp;gt;TASKS_STOP = 1;
NRF_TIMER2-&amp;gt;TASKS_SHUTDOWN = 1;

// RTC
NRF_RTC0-&amp;gt;TASKS_STOP = 1;
NRF_RTC1-&amp;gt;TASKS_STOP = 1;

// GPIOTE
NRF_GPIOTE-&amp;gt;INTENCLR = 0xFFFFFFFF;
for (int i = 0; i &amp;lt; 8; i++) {
    NRF_GPIOTE-&amp;gt;CONFIG[i] = 0;
}

// Other peripherals
NRF_SAADC-&amp;gt;ENABLE = 0;
NRF_PWM0-&amp;gt;ENABLE = 0;
NRF_COMP-&amp;gt;ENABLE = 0;
NRF_RADIO-&amp;gt;POWER = 0;

// Stop clocks
NRF_CLOCK-&amp;gt;TASKS_LFCLKSTOP = 1;
NRF_CLOCK-&amp;gt;TASKS_HFCLKSTOP = 1;

// Disable DC/DC
NRF_POWER-&amp;gt;DCDCEN = 0;
__disable_irq();
NVIC-&amp;gt;ICPR[0] = 0xFFFFFFFF;

nrf_delay_ms(100);

// Sleep with WFE
while(1) {
    __WFE();
}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p class="whitespace-normal break-words"&gt;&lt;strong&gt;Result:&lt;/strong&gt; Still seeing ~3.66mA, no change from normal operation.&lt;/p&gt;
&lt;h2 id="mcetoc_1j9a0t2el1" class="text-xl font-bold text-text-100 mt-1 -mb-0.5"&gt;Questions&lt;/h2&gt;
&lt;ol&gt;
&lt;li class="whitespace-normal break-words"&gt;&lt;strong&gt;How can I properly disable all GPIOs?&lt;/strong&gt; Should I configure them as:
&lt;ul&gt;
&lt;li class="whitespace-normal break-words"&gt;Input with pulldown?&lt;/li&gt;
&lt;li class="whitespace-normal break-words"&gt;Disconnected input buffer?&lt;/li&gt;
&lt;li class="whitespace-normal break-words"&gt;Something else for nRF52811 specifically?&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class="whitespace-normal break-words"&gt;&lt;strong&gt;Is there a recommended test sequence&lt;/strong&gt; to enter absolute minimum power state (System OFF)?&lt;/li&gt;
&lt;li class="whitespace-normal break-words"&gt;&lt;strong&gt;Should I try entering System OFF mode directly&lt;/strong&gt; using &lt;code&gt;NRF_POWER-&amp;gt;SYSTEMOFF = 1;&lt;/code&gt; to see the absolute floor current consumption?&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;edit:- on trying&amp;nbsp; this code&lt;br /&gt;int main(void){&lt;br /&gt;&amp;nbsp; NRF_POWER-&amp;gt;SYSTEMOFF = 1;&lt;br /&gt;&amp;nbsp; for(;;){}&lt;br /&gt;}&lt;br /&gt;in ble_blinky example i got this&lt;br /&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/Screenshot-from-2025_2D00_11_2D00_05-18_2D00_45_2D00_24.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High Power Consumption on Custom nRF52811 Board (~4mA vs 17µA on DK)</title><link>https://devzone.nordicsemi.com/thread/553427?ContentTypeID=1</link><pubDate>Wed, 05 Nov 2025 12:21:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1a991fb4-503a-441e-8dbc-2915b87044f3</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;1. From the current consumption it seems that the floor current is ~3mA, which means that either the nRF52811 doesn&amp;#39;t go to sleep correctly, or there is something else on the board that draws this excess current.&lt;/p&gt;
&lt;p&gt;2.&amp;nbsp;Most likely a PCB layout issue. Leakage current or some other chip drawing power.&lt;/p&gt;
&lt;p&gt;3. No, except removing the inductors and capacitor from the DCC pin there should be no HW changes necessary.&lt;/p&gt;
&lt;p&gt;4. I think the first step should be to do a HW review. We can help you with that if you&amp;#39;d like. If you update the schematics as a .pdf and HW layout as gerber files we can review it and see if something obvious seems off here. Are there for example any other chips/MCUs on your board that might be drawing current?&lt;/p&gt;
&lt;p&gt;The next thing if we can&amp;#39;t find anything in the HW files would be to debug the custom board physically and try to find out where this current disappears to. That would mainly be done with a multimeter of sorts while the device is running in what should be a low power mode and checking from which pin/decoupling cap the current escapes to.&lt;/p&gt;
&lt;p&gt;Do you see the same behavior on more than one board or have you only tested on one specific custom board? Making sure it&amp;#39;s reproducible on more than one board is a good way to see if this is just not a soldering issue.&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></channel></rss>