<?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 SYSTEM OFF -nrf52820</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/82953/high-power-consumption-on-system-off--nrf52820</link><description>Hi, 
 GOAL : I try to measure the current consumption in system off only. 
 PROBLEM : I measure a current of 8uA in system off while in the datasheet of the PAN1781 et nrf52820 it is sub uA with no ram retention. 
 HARDWARE: I am using a PAN1781 (nrf52820</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 21 Dec 2021 13:35:52 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/82953/high-power-consumption-on-system-off--nrf52820" /><item><title>RE: High power consumption on SYSTEM OFF -nrf52820</title><link>https://devzone.nordicsemi.com/thread/344610?ContentTypeID=1</link><pubDate>Tue, 21 Dec 2021 13:35:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bd8ae2b1-dc67-46a3-96a4-709a6fac352b</guid><dc:creator>Damezumari</dc:creator><description>&lt;p&gt;I have removed a leaking diode, on the dev board and it solved the problem.&lt;/p&gt;
&lt;p&gt;I can now observe 300nA to 500nA !&lt;/p&gt;
&lt;p&gt;The diode is the shottky&amp;nbsp;D8 RB168VYM-30FH&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://mediap.industry.panasonic.eu/assets/custom-upload/Devices/Wireless%20Connectivity/Bluetooth%20Low%20Energy%20Modules/PAN1781/PAN1781%20EVB%20Schematics.pdf"&gt;mediap.industry.panasonic.eu/.../PAN1781 EVB Schematics.pdf&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption on SYSTEM OFF -nrf52820</title><link>https://devzone.nordicsemi.com/thread/344396?ContentTypeID=1</link><pubDate>Mon, 20 Dec 2021 14:10:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6d23bf16-234e-419c-af35-b805822ff979</guid><dc:creator>Damezumari</dc:creator><description>&lt;p&gt;After disabling both RTC I did not measure any change in consumption:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;void main(void)
{
  printk(&amp;quot;Voltage mode : %s &amp;quot;, NRF_POWER-&amp;gt;MAINREGSTATUS ? &amp;quot;High&amp;quot; :&amp;quot;Normal&amp;quot;);
  NRF_RTC0-&amp;gt;TASKS_STOP=1;
  NRF_RTC0-&amp;gt;INTENCLR=0xFFFFFFFF;
  NRF_RTC0-&amp;gt;EVTENCLR=0xFFFFFFFF;
  NRF_RTC1-&amp;gt;TASKS_STOP=1;
  NRF_RTC1-&amp;gt;INTENCLR=0xFFFFFFFF;
  NRF_RTC1-&amp;gt;EVTENCLR=0xFFFFFFFF;

  NRF_POWER-&amp;gt;SYSTEMOFF = 1;
  for(;;){}
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know if they were started before tho.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption on SYSTEM OFF -nrf52820</title><link>https://devzone.nordicsemi.com/thread/344378?ContentTypeID=1</link><pubDate>Mon, 20 Dec 2021 13:37:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:59a174a5-667e-4ac4-8f58-a5ef2573bb55</guid><dc:creator>Damezumari</dc:creator><description>&lt;p&gt;VDDH is shorted to VDD 3.3V. According to the datasheet:&lt;/p&gt;
&lt;p&gt;&amp;quot;The system enters Normal Voltage mode when the supply voltage is connected to both the VDD and VDDH pins (pin VDD shorted to pin VDDH).&amp;quot;&lt;/p&gt;
&lt;p&gt;After reading the register with :&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;void main(void)
{
  printk(&amp;quot;Voltage mode : %s &amp;quot;, NRF_POWER-&amp;gt;MAINREGSTATUS ? &amp;quot;High&amp;quot; :&amp;quot;Normal&amp;quot;);
  NRF_POWER-&amp;gt;SYSTEMOFF = 1;
  for(;;){}
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;It return &amp;quot;Normal&amp;quot;.&lt;/p&gt;
&lt;p&gt;Maybe the two external oscillators are responsible for this uA. RTC peripheral is not listed in&amp;nbsp;the prj.conf.&lt;/p&gt;
&lt;p&gt;I am going to try to disable them.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption on SYSTEM OFF -nrf52820</title><link>https://devzone.nordicsemi.com/thread/344351?ContentTypeID=1</link><pubDate>Mon, 20 Dec 2021 12:29:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:163a2f6f-9d67-4359-8fe4-0fe54b0bbfbc</guid><dc:creator>Visti Andresen</dc:creator><description>&lt;p&gt;3) You basically just write the Interrup&lt;span style="font-family:inherit;font-size:inherit;"&gt;t table to jump directly to some startup code that power down the chip (either in assembly or C). &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:inherit;font-size:inherit;"&gt;But I would stay with 1) for a while&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:inherit;"&gt;&lt;a href="https://b2b-api.panasonic.eu/file_stream/pids/fileversion/247007"&gt;https://b2b-api.panasonic.eu/file_stream/pids/fileversion/247007&lt;/a&gt;&amp;nbsp; mentions:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:inherit;font-size:inherit;"&gt;&lt;span class="markedContent" id="page79R_mcid41"&gt;&lt;span style="left:171.433px;top:483.383px;" dir="ltr"&gt;V&lt;/span&gt;&lt;span style="left:181.433px;top:488.017px;" dir="ltr"&gt;DDH&lt;/span&gt;&lt;span style="left:203.053px;top:488.017px;" dir="ltr"&gt; &lt;/span&gt;&lt;span style="left:207.233px;top:483.383px;" dir="ltr"&gt;(HV&lt;/span&gt;&lt;span style="left:233.063px;top:483.383px;" dir="ltr"&gt; &lt;/span&gt;&lt;span style="left:237.233px;top:483.383px;" dir="ltr"&gt;m&lt;/span&gt;&lt;span style="left:249.833px;top:483.383px;" dir="ltr"&gt;ode)&lt;/span&gt;&lt;/span&gt;&lt;span class="markedContent" id="page79R_mcid42"&gt;&lt;span style="left:280.028px;top:483.383px;" dir="ltr"&gt; &lt;/span&gt;&lt;span style="left:301.433px;top:483.383px;" dir="ltr"&gt;Supply Voltage&lt;/span&gt;&lt;/span&gt;&lt;span class="markedContent" id="page79R_mcid43"&gt;&lt;span style="left:402.473px;top:483.383px;" dir="ltr"&gt; &lt;/span&gt;&lt;span style="left:419.683px;top:483.383px;" dir="ltr"&gt;V&lt;/span&gt;&lt;span style="left:429.683px;top:488.017px;" dir="ltr"&gt;DDH&lt;/span&gt;&lt;span style="left:451.303px;top:488.017px;" dir="ltr"&gt; &lt;/span&gt;&lt;span style="left:455.483px;top:483.383px;" dir="ltr"&gt;(o&lt;/span&gt;&lt;span style="left:468.883px;top:483.383px;" dir="ltr"&gt;ptional&lt;/span&gt;&lt;span style="left:513.283px;top:483.383px;" dir="ltr"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span class="markedContent" id="page79R_mcid44"&gt;&lt;span style="left:518.278px;top:483.383px;" dir="ltr"&gt; min &lt;/span&gt;&lt;span style="left:624.717px;top:483.383px;" dir="ltr"&gt;2.5V&lt;/span&gt;&lt;/span&gt;&lt;span class="markedContent" id="page79R_mcid45"&gt;&lt;/span&gt;&lt;span class="markedContent" id="page79R_mcid46"&gt;&lt;span style="left:645.612px;top:483.383px;" dir="ltr"&gt; max &lt;/span&gt;&lt;span style="left:786.567px;top:483.383px;" dir="ltr"&gt;5.5V&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:inherit;"&gt;And I believe that the stated typical currents are only for:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:inherit;font-size:inherit;"&gt;&amp;quot;&lt;span class="markedContent" id="page79R_mcid85"&gt;&lt;span style="left:272.233px;top:874.79px;" dir="ltr"&gt;Assume V&lt;/span&gt;&lt;span style="left:348.083px;top:880.037px;" dir="ltr"&gt;DD&lt;/span&gt;&lt;span style="left:363.681px;top:880.037px;" dir="ltr"&gt; &lt;/span&gt;&lt;span style="left:368.283px;top:874.79px;" dir="ltr"&gt;= 3 V, T&lt;/span&gt;&lt;span style="left:425.883px;top:880.037px;" dir="ltr"&gt;amb&lt;/span&gt;&lt;span style="left:446.88px;top:880.037px;" dir="ltr"&gt; &lt;/span&gt;&lt;span style="left:451.483px;top:874.79px;" dir="ltr"&gt;= 25 &amp;deg;C&lt;/span&gt;&lt;span style="left:506.683px;top:874.79px;" dir="ltr"&gt;, if not&lt;/span&gt;&lt;span style="left:552.117px;top:874.79px;" dir="ltr"&gt;hing else stated&lt;/span&gt;&lt;span style="left:668.717px;top:874.79px;" dir="ltr"&gt;,&lt;/span&gt;&lt;span style="left:673.332px;top:874.79px;" dir="ltr"&gt; &lt;/span&gt;&lt;span style="left:678.317px;top:874.79px;" dir="ltr"&gt;DC/DC enabled&lt;/span&gt;&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:inherit;"&gt;Accord&lt;/span&gt;ing to &lt;a href="https://infocenter.nordicsemi.com/pdf/nRF52820_PS_v1.3.pdf"&gt;https://infocenter.nordicsemi.com/pdf/nRF52820_PS_v1.3.pdf&lt;/a&gt; page 69&lt;br /&gt;You can determine the power source from:&lt;br /&gt;MAINREGSTATUS Address offset: 0x640&lt;br /&gt;&lt;br /&gt;Maybe the high voltage regulator has an Iq of ~1.5uA ?&lt;span style="font-family:monospace;font-size:17.5px;left:141.732px;top:458.235px;" dir="ltr"&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption on SYSTEM OFF -nrf52820</title><link>https://devzone.nordicsemi.com/thread/344327?ContentTypeID=1</link><pubDate>Mon, 20 Dec 2021 11:22:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:443e162c-2029-4f96-9d6c-aecc2e871ba0</guid><dc:creator>Damezumari</dc:creator><description>&lt;p&gt;1) I tried disconnecting the jumper that power the&amp;nbsp;RF module (PAN1781/nrf52820), I measured 6.5uA ! Which means the devboard consume 6.5uA.&lt;/p&gt;
&lt;p&gt;To sum Up:&lt;/p&gt;
&lt;p&gt;Measure no load = 10nA&lt;/p&gt;
&lt;p&gt;Measure with DK only = 6.5uA&lt;/p&gt;
&lt;p&gt;Measure with DK + RFmodule = 8.3 uA&lt;/p&gt;
&lt;p&gt;Deducing RFmodule=1.8uA .&lt;/p&gt;
&lt;p&gt;2) This is better but not quite what&amp;#39;s written on the datasheet.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/consoPan.png" /&gt;&lt;/p&gt;
&lt;p&gt;3) How would you do that ? I couldn&amp;#39;t find any exemples without zephyr ?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption on SYSTEM OFF -nrf52820</title><link>https://devzone.nordicsemi.com/thread/344292?ContentTypeID=1</link><pubDate>Mon, 20 Dec 2021 09:57:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:62768b71-9e0b-48d3-bc94-d24c48cd8563</guid><dc:creator>Visti Andresen</dc:creator><description>&lt;p&gt;I have no experience with the board in question or the nRF52820 (I use a nRF52832)&lt;br /&gt;But since you don&amp;#39;t seem to have used any peripherals I assume a low risk of it being one of the anomalies described in one of the Product Anomaly Notifications.&lt;br /&gt;I also assume this is after a cold boot with no debugger active and all peripherals reset to there normal power on state&lt;br /&gt;&lt;br /&gt;I would:&lt;br /&gt;1) Look at the schematic of you dev board, are you only measuring the nrf current draw?&lt;br /&gt;(especially looking for voltage regulators and also considering parasitic draw of other components)&lt;/p&gt;
&lt;p&gt;2) Read though the PAN document for the nRF52820 (once again just to make sure&lt;/p&gt;
&lt;p&gt;3) As a last measure I might consider creating a firmware that doesn&amp;#39;t use the SDK and SoftDevice that immediately powers the chip down&lt;br /&gt;(To get a reference measurement of how low it is possible to get the board to go)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>