<?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>nRF52840 DK / PCA10056 System Off</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/67529/nrf52840-dk-pca10056-system-off</link><description>Hi all, 
 I cannot manage to get a proper System Off consumption with the nRF52840. 
 I use this setup, with devkits as the DUT (powered through &amp;quot;External Supply&amp;quot;) : 
 
 
 When using a PCA10100 (nRF52833), I get this ( 4&amp;#181;A ), when calling nrf_pwr_mgmt_shutdown</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 04 Dec 2020 15:35:57 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/67529/nrf52840-dk-pca10056-system-off" /><item><title>RE: nRF52840 DK / PCA10056 System Off</title><link>https://devzone.nordicsemi.com/thread/283364?ContentTypeID=1</link><pubDate>Fri, 04 Dec 2020 15:35:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8356a571-50ee-4b09-98a4-d8a566db0006</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;Hi Jerome,&lt;/p&gt;
&lt;p&gt;I am sorry for the long silence. I have now made some measurements and findings.&lt;/p&gt;
&lt;p&gt;What is the position of SW6 on PCA10056? When the switch is positioned at &amp;#39;nRF ONLY&amp;quot; I measure about 5uA. However, when I move the switch to &amp;#39;Default&amp;#39; I measure 2mA. Have you tried toggling this switch? If we are lucky, you will see the measured current drop to the uA range as well.&lt;/p&gt;
&lt;p&gt;If we do the same exercise on PCA10100 we measure 5uA when set to &amp;#39;nRF ONLY&amp;#39;. If the switch is set ti &amp;#39;DEFAULT&amp;#39; the current only jumps a few hundred nA.&lt;/p&gt;
&lt;p&gt;Here are a few notes regarding my setup: I performed the measurements with PPK2 set up in Source meter mode. I compiled ble_app_uart using nRF5 SDK 17.0.2 and SoftDevice S140. I made the same shutdown call as you as well as disabling uart. The main() of the modified example then looked like this:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;int main(void)&lt;/code&gt;&lt;br /&gt;&lt;code&gt;{&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bool erase_bonds;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Initialize.&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //uart_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; log_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; timers_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; buttons_leds_init(&amp;amp;erase_bonds);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; power_management_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ble_stack_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nrf_pwr_mgmt_shutdown(NRF_PWR_MGMT_SHUTDOWN_GOTO_SYSOFF);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gap_params_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gatt_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; services_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; advertising_init();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn_params_init();&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Start execution.&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; printf(&amp;quot;\r\nUART started.\r\n&amp;quot;);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NRF_LOG_INFO(&amp;quot;Debug logging for UART over RTT started.&amp;quot;);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; advertising_start();&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Enter main loop.&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (;;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idle_state_handle();&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt;}&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;In &lt;code&gt;sdk_config.h &lt;/code&gt;I disabled logging on&amp;nbsp;line 7731 by changing from 1 to 0: &lt;code&gt;#define NRF_LOG_ENABLED 0&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best 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: nRF52840 DK / PCA10056 System Off</title><link>https://devzone.nordicsemi.com/thread/281394?ContentTypeID=1</link><pubDate>Mon, 23 Nov 2020 16:23:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6b62cebb-f26f-43de-a4a0-81dc25bd9467</guid><dc:creator>Jerome ML</dc:creator><description>&lt;p&gt;Hi H&amp;aring;kon,&lt;/p&gt;
&lt;p&gt;I noticed that the PCA10056 is not like the PCA10100 : it has a much higher consumption when used the way I explained.&lt;/p&gt;
&lt;p&gt;Whereas the consumption of the PCA10100 is very similar when used as a DUT (through external supply) or with the PPK on top of it.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s a pity the devkits are so (secretly) different.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 DK / PCA10056 System Off</title><link>https://devzone.nordicsemi.com/thread/280193?ContentTypeID=1</link><pubDate>Mon, 16 Nov 2020 17:50:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c1998dd1-3f92-449d-b2f3-77689eaffc6a</guid><dc:creator>Jerome ML</dc:creator><description>&lt;p&gt;Hi H&amp;aring;kon,&lt;/p&gt;
&lt;p&gt;Thank you for your answer.&lt;/p&gt;
&lt;p&gt;The nRF52840 is QIAADO, 1930BC.&lt;/p&gt;
&lt;p&gt;The PCA10056 is 2.0.2 2020.13.&lt;/p&gt;
&lt;p&gt;I doubt it could be the DMA or any peripherals that would still be running because my code is very simple and I don&amp;#39;t activate anything :&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;
    ble_stack_init();
    nrf_pwr_mgmt_shutdown(NRF_PWR_MGMT_SHUTDOWN_GOTO_SYSOFF);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I had a look at the errata, and I didn&amp;#39;t find anything relevant.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Jerome&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 DK / PCA10056 System Off</title><link>https://devzone.nordicsemi.com/thread/279884?ContentTypeID=1</link><pubDate>Fri, 13 Nov 2020 11:03:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:51c05b27-5264-4c85-b647-68c5e550ffa9</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;Hi Jerome,&lt;/p&gt;
&lt;p&gt;Thank you for your patience, I am very sorry for the long wait.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am investigating a few possible scenarios. In order to narrow things down, could you please let me know the IC revisions involved, most importantly for nRF52840? And which HW version of the DKs are you using? I had a discussion with a team member regarding your case, and it was suggested that the DMA could still be active. The DMA is supposedly consuming around 2mA and it might be kept active due to some peripheral not shutting down properly. Could you please also list the peripherals you are using? The next step would be to investigate which of these could still be running. One place to look is at the errata, as small variations between the ICs could be causing trouble.&lt;/p&gt;
&lt;p&gt;Best 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: nRF52840 DK / PCA10056 System Off</title><link>https://devzone.nordicsemi.com/thread/278665?ContentTypeID=1</link><pubDate>Thu, 05 Nov 2020 16:41:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4683bc9d-54b5-4108-87ff-bf35817b9e65</guid><dc:creator>Jerome ML</dc:creator><description>&lt;p&gt;Hi, it&amp;#39;s already 2 weeks...&lt;/p&gt;
&lt;p&gt;Can you have a look at this issue as you said you would, please ?&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 DK / PCA10056 System Off</title><link>https://devzone.nordicsemi.com/thread/277889?ContentTypeID=1</link><pubDate>Fri, 30 Oct 2020 17:43:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1f88f43b-5525-4e9c-9110-f6da583158ba</guid><dc:creator>Jerome ML</dc:creator><description>&lt;p&gt;Hi.&lt;/p&gt;
&lt;p&gt;Do you have some news ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 DK / PCA10056 System Off</title><link>https://devzone.nordicsemi.com/thread/276647?ContentTypeID=1</link><pubDate>Fri, 23 Oct 2020 13:34:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f0843b9-85fb-45ce-a89c-2ed1c1f9acf7</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;Hi Jerome,&lt;/p&gt;
&lt;p&gt;I will get back to you next week. Have a great weekend.&lt;/p&gt;
&lt;p&gt;Best 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>