<?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>nRF52832 power consumption issue in system off mode</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/75796/nrf52832-power-consumption-issue-in-system-off-mode</link><description>Hi, 
 I have power consumption issue about nRF52832 BLE application. 
 I found &amp;quot;Current consumption:Ultra-low power&amp;quot; informations in &amp;quot;nRF52832 Product Specification&amp;quot; as below 
 then I use &amp;quot;sd_power_sleep_off&amp;quot; enter system off mode after BLE stop advertisting</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 04 Jun 2021 01:13:35 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/75796/nrf52832-power-consumption-issue-in-system-off-mode" /><item><title>RE: nRF52832 power consumption issue in system off mode</title><link>https://devzone.nordicsemi.com/thread/313519?ContentTypeID=1</link><pubDate>Fri, 04 Jun 2021 01:13:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4de4f85a-ffff-413b-bae6-673baf379aa7</guid><dc:creator>mike_yang</dc:creator><description>&lt;p&gt;Hi Simonr,&lt;/p&gt;
&lt;p&gt;I used multimeter measuring power consumption on my custom board.&lt;/p&gt;
&lt;p&gt;then I found my board seem have some leakage current that give rise to me get mA current consumption.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks for your help!!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;BR,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Mike&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 power consumption issue in system off mode</title><link>https://devzone.nordicsemi.com/thread/313315?ContentTypeID=1</link><pubDate>Thu, 03 Jun 2021 08:46:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0736eac2-b86c-4c6a-b94f-ce929227ae65</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi again&lt;/p&gt;
&lt;p&gt;Please try to flash the following code onto your board:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;int main(void){
    NRF_POWER-&amp;gt;SYSTEMOFF = 1;
    for(;;){}
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;This should make the chip consume ~300nA.&lt;/p&gt;
&lt;p&gt;Please confirm that you power cycle the board after you have flashed the application onto your device (r&lt;span&gt;emove all power sources to make sure that it is properly off) before restarting it yet again.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Can you provide some details on the following:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;Are you measuring this current consumption on a nRF52 DK or a custom board? If it&amp;#39;s a custom board, make sure that you disconnect the debugger from the device during the power cycling procedure.&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;How exactly are you measuring the current consumption? Are you using a PPK, multimeter, or some other measurement equipment?&lt;/li&gt;
&lt;/ul&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: nRF52832 power consumption issue in system off mode</title><link>https://devzone.nordicsemi.com/thread/312992?ContentTypeID=1</link><pubDate>Wed, 02 Jun 2021 01:53:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:02cd63eb-d329-4acb-85b3-f71414f9df1d</guid><dc:creator>mike_yang</dc:creator><description>&lt;p&gt;Hi Simonr,&lt;/p&gt;
&lt;p&gt;I follow your setting as below&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/7206.setting.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;But my device current consumption is same about 1mA.&lt;/p&gt;
&lt;p&gt;I use blinky example(examples\peripheral\blinky\) testing system off mode.&lt;/p&gt;
&lt;p&gt;Because I think this code is clean code.&lt;/p&gt;
&lt;p&gt;My code as below&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#include &amp;lt;stdbool.h&amp;gt;
#include &amp;lt;stdint.h&amp;gt;
#include &amp;quot;nrf_delay.h&amp;quot;
#include &amp;quot;boards.h&amp;quot;

/**
 * @brief Function for application main entry.
 */
int main(void)
{
    NRF_POWER-&amp;gt;SYSTEMOFF=1;
    /* Configure board. */
    //bsp_board_init(BSP_INIT_LEDS);

    /* Toggle LEDs. */
    /*while (true)
    {
        for (int i = 0; i &amp;lt; LEDS_NUMBER; i++)
        {
            bsp_board_led_invert(i);
            nrf_delay_ms(500);
        }
    }*/
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;There is anything I ignore??&lt;/p&gt;
&lt;p&gt;Thanks!!&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 power consumption issue in system off mode</title><link>https://devzone.nordicsemi.com/thread/312822?ContentTypeID=1</link><pubDate>Tue, 01 Jun 2021 10:23:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4e66cbb2-f132-4677-bf21-ff4173acec38</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Depending on what IDE you&amp;#39;re using for development this may vary, but in SEGGER Embedded Studios you will have to remove the DEBUG define from the preprocessor definitions. See the picture below for reference. Please note that you need to make sure that the Common configuration should be used, so make sure that it is.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/debug_5F00_preprocess.png" /&gt;&lt;/p&gt;
&lt;p&gt;After this is done, build and run the application onto your device and power cycle your device (remove all power sources to make sure that it is properly off) before restarting it yet again.&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: nRF52832 power consumption issue in system off mode</title><link>https://devzone.nordicsemi.com/thread/312732?ContentTypeID=1</link><pubDate>Tue, 01 Jun 2021 03:29:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:88a291c1-4613-4acb-b451-7c9b1c8aec98</guid><dc:creator>mike_yang</dc:creator><description>&lt;p&gt;Hi Simonr,&lt;/p&gt;
&lt;p&gt;Could you tell me how to exit debug mode??&lt;/p&gt;
&lt;p&gt;And how to check it??&lt;/p&gt;
&lt;p&gt;Thanks!!&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 power consumption issue in system off mode</title><link>https://devzone.nordicsemi.com/thread/312659?ContentTypeID=1</link><pubDate>Mon, 31 May 2021 13:33:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:618bb867-43b9-46e4-a9a5-2462b304a740</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;This sounds very much like your device is in debug mode. Emulated system OFF, which will run in debug mode, will not give the expected result in terms of power consumption. If you make sure that DEBUG is not set in your preprocessor definitions, and you power cycle your device, it should go out of debug mode.&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>