<?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>Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/51400/source-code-to-achieve-1-5ua-standby-current</link><description>Hi all, 
 I wanted to see this below screen shot current number on nRF52840 DK 
 
 For that I changed peripheral/blinky example main() like this but I am seeing 14uA. 
 /* Configure board. */ //bsp_board_init(BSP_INIT_LEDS); NRF_POWER-&amp;gt;RAM[0].POWERCLR</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 08 Jan 2020 13:35:04 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/51400/source-code-to-achieve-1-5ua-standby-current" /><item><title>RE: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/228152?ContentTypeID=1</link><pubDate>Wed, 08 Jan 2020 13:35:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bc871e90-4cf5-483b-9065-eaf692800206</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;I think the current consumption should go down if you do clear the RAM blocks in your main loop, I.E. setting #if 1 and not 0 in your main loop.&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: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/228096?ContentTypeID=1</link><pubDate>Wed, 08 Jan 2020 10:32:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f3731de1-1b62-4d09-86b1-810c61e1fd4b</guid><dc:creator>Sridhar Jonnavittula</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;
#include &amp;quot;nrf.h&amp;quot;
#include &amp;quot;nrf_gpio.h&amp;quot;
#include &amp;quot;nrf_drv_rtc.h&amp;quot;
#include &amp;quot;nrf_drv_clock.h&amp;quot;
#include &amp;quot;boards.h&amp;quot;
#include &amp;quot;app_error.h&amp;quot;
#include &amp;quot;nrf_delay.h&amp;quot;
#include &amp;lt;stdint.h&amp;gt;
#include &amp;lt;stdbool.h&amp;gt;

#define COMPARE_COUNTERTIME  (3UL)                                        /**&amp;lt; Get Compare event COMPARE_TIME seconds after the counter starts from 0. */

#ifdef BSP_LED_0
    #define TICK_EVENT_OUTPUT     BSP_LED_0                                 /**&amp;lt; Pin number for indicating tick event. */
#endif
#ifndef TICK_EVENT_OUTPUT
    #error &amp;quot;Please indicate output pin&amp;quot;
#endif
#ifdef BSP_LED_1
    #define COMPARE_EVENT_OUTPUT   BSP_LED_1                                /**&amp;lt; Pin number for indicating compare event. */
#endif
#ifndef COMPARE_EVENT_OUTPUT
    #error &amp;quot;Please indicate output pin&amp;quot;
#endif

const nrf_drv_rtc_t rtc = NRF_DRV_RTC_INSTANCE(0); /**&amp;lt; Declaring an instance of nrf_drv_rtc for RTC0. */

/** @brief: Function for handling the RTC0 interrupts.
 * Triggered on TICK and COMPARE0 match.
 */
static void rtc_handler(nrf_drv_rtc_int_type_t int_type)
{
    if (int_type == NRF_DRV_RTC_INT_COMPARE0)
    {
       // nrf_gpio_pin_toggle(COMPARE_EVENT_OUTPUT);
    }
    else if (int_type == NRF_DRV_RTC_INT_TICK)
    {
        //nrf_gpio_pin_toggle(TICK_EVENT_OUTPUT);
    }
}

/** @brief Function configuring gpio for pin toggling.
 */
static void leds_config(void)
{
    bsp_board_init(BSP_INIT_LEDS);
}

/** @brief Function starting the internal LFCLK XTAL oscillator.
 */
static void lfclk_config(void)
{
    ret_code_t err_code = nrf_drv_clock_init();
    APP_ERROR_CHECK(err_code);

    nrf_drv_clock_lfclk_request(NULL);
}

/** @brief Function initialization and configuration of RTC driver instance.
 */
static void rtc_config(void)
{
    uint32_t err_code;

    //Initialize RTC instance
    nrf_drv_rtc_config_t config = NRF_DRV_RTC_DEFAULT_CONFIG;
    config.prescaler = 4095;
    err_code = nrf_drv_rtc_init(&amp;amp;rtc, &amp;amp;config, rtc_handler);
    APP_ERROR_CHECK(err_code);

    //Enable tick event &amp;amp; interrupt
    //nrf_drv_rtc_tick_enable(&amp;amp;rtc,true);

    //Set compare channel to trigger interrupt after COMPARE_COUNTERTIME seconds
    //err_code = nrf_drv_rtc_cc_set(&amp;amp;rtc,0,COMPARE_COUNTERTIME * 8,true);
    //APP_ERROR_CHECK(err_code);

    //Power on RTC instance
    nrf_drv_rtc_enable(&amp;amp;rtc);
}

/**
 * @brief Function for application main entry.
 */
int main(void)
{
    leds_config();

    lfclk_config();

    rtc_config();

#if 0
//NRF_POWER-&amp;gt;RAM[0].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[1].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[2].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[3].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[4].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[5].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[6].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[7].POWERCLR = 0xFFFF;
//NRF_POWER-&amp;gt;RAM[8].POWERCLR = 0xFFFF;
#endif

    while (true)
    {
        __SEV();
        __WFE();
        __WFE();
    }
}


/**  @} */
#endif&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I have modified RTC example as above. I get 54uA average for 1.5ms for every 20ms time. I did not change the LF clock source which is by default crystal.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;May I know why it is consuming?&lt;/p&gt;
&lt;p&gt;Thanks&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/RTC_5F00_complete_5F00_sleep.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/223598?ContentTypeID=1</link><pubDate>Wed, 04 Dec 2019 12:52:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f62fbf62-dd11-4755-9624-2e94b72332ab</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;1. No, I also see ~3µA using the PPK. This is likely due to leakage currents on the DK, and if you measure this as an external board, using the nRF Only setting and the debugger of another DK you should be able to see ~1.5µA. You can see how to do this in the &lt;a href="https://infocenter.nordicsemi.com/pdf/PPK_User_Guide_v2.4.pdf"&gt;PPK user guide&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;2. This seems somewhat unrelated to this ticket&amp;#39;s topic, so please create a new ticket regarding this issue. We strive to keep each ticket to one topic, to keep it easier for future customers with similar issues to search for one specific topic.&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: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/223486?ContentTypeID=1</link><pubDate>Wed, 04 Dec 2019 07:57:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2072bee-5040-4f77-be7e-aea9005c9af1</guid><dc:creator>Sridhar Jonnavittula</dc:creator><description>&lt;p&gt;Actually we are using with other profiler. In PPK I see around 3uA.&lt;/p&gt;
&lt;p&gt;1. Is 1.5uA is the value you have seen on your end?&lt;/p&gt;
&lt;p&gt;2. Also I was trying to store some incremented value in NRF_POWER-&amp;gt;GPREGRET in TICK event handler to store while in sleep. But it is not updating and I see same value every time in GPREGRET memory. Please tell the correct procedure.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/223472?ContentTypeID=1</link><pubDate>Wed, 04 Dec 2019 07:08:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:057aa772-fb0f-4941-9495-09495d867ad9</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I tested your code and was not able to see a 60µA average current draw like you are. Please make sure you&amp;#39;re looking at the avg. current and not the max. current in the Power Profiler app. It should not be necessary to include the POWERCLR block in order to see this either. I see the same current draw with and without this added to the main loop. You&amp;#39;re using a development kit and a PPK for these measurements, right?&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: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/223332?ContentTypeID=1</link><pubDate>Tue, 03 Dec 2019 13:00:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f7adb1e6-38b2-4ca6-b7a9-4ad1c291b8f9</guid><dc:creator>Sridhar Jonnavittula</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;/**
 * Copyright (c) 2014 - 2019, Nordic Semiconductor ASA
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this
 *    list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form, except as embedded into a Nordic
 *    Semiconductor ASA integrated circuit in a product or a software update for
 *    such product, must reproduce the above copyright notice, this list of
 *    conditions and the following disclaimer in the documentation and/or other
 *    materials provided with the distribution.
 *
 * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
 *    contributors may be used to endorse or promote products derived from this
 *    software without specific prior written permission.
 *
 * 4. This software, with or without modification, must only be used with a
 *    Nordic Semiconductor ASA integrated circuit.
 *
 * 5. Any software provided in binary form under this license must not be reverse
 *    engineered, decompiled, modified and/or disassembled.
 *
 * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA &amp;quot;AS IS&amp;quot; AND ANY EXPRESS
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */
/** @file
 * @defgroup rtc_example_main main.c
 * @{
 * @ingroup rtc_example
 * @brief Real Time Counter Example Application main file.
 *
 * This file contains the source code for a sample application using the Real Time Counter (RTC).
 *
 */

#include &amp;quot;nrf.h&amp;quot;
#include &amp;quot;nrf_gpio.h&amp;quot;
#include &amp;quot;nrf_drv_rtc.h&amp;quot;
#include &amp;quot;nrf_drv_clock.h&amp;quot;
#include &amp;quot;boards.h&amp;quot;
#include &amp;quot;app_error.h&amp;quot;
#include &amp;quot;nrf_delay.h&amp;quot;
#include &amp;lt;stdint.h&amp;gt;
#include &amp;lt;stdbool.h&amp;gt;

#define COMPARE_COUNTERTIME  (3UL)                                        /**&amp;lt; Get Compare event COMPARE_TIME seconds after the counter starts from 0. */

#ifdef BSP_LED_0
    #define TICK_EVENT_OUTPUT     BSP_LED_0                                 /**&amp;lt; Pin number for indicating tick event. */
#endif
#ifndef TICK_EVENT_OUTPUT
    #error &amp;quot;Please indicate output pin&amp;quot;
#endif
#ifdef BSP_LED_1
    #define COMPARE_EVENT_OUTPUT   BSP_LED_1                                /**&amp;lt; Pin number for indicating compare event. */
#endif
#ifndef COMPARE_EVENT_OUTPUT
    #error &amp;quot;Please indicate output pin&amp;quot;
#endif

const nrf_drv_rtc_t rtc = NRF_DRV_RTC_INSTANCE(0); /**&amp;lt; Declaring an instance of nrf_drv_rtc for RTC0. */

/** @brief: Function for handling the RTC0 interrupts.
 * Triggered on TICK and COMPARE0 match.
 */
static void rtc_handler(nrf_drv_rtc_int_type_t int_type)
{
    if (int_type == NRF_DRV_RTC_INT_COMPARE0)
    {
       // nrf_gpio_pin_toggle(COMPARE_EVENT_OUTPUT);
    }
    else if (int_type == NRF_DRV_RTC_INT_TICK)
    {
       // nrf_gpio_pin_toggle(TICK_EVENT_OUTPUT);
    }
}

/** @brief Function configuring gpio for pin toggling.
 */
static void leds_config(void)
{
    bsp_board_init(BSP_INIT_LEDS);
}

/** @brief Function starting the internal LFCLK XTAL oscillator.
 */
static void lfclk_config(void)
{
    ret_code_t err_code = nrf_drv_clock_init();
    APP_ERROR_CHECK(err_code);

    nrf_drv_clock_lfclk_request(NULL);
}

/** @brief Function initialization and configuration of RTC driver instance.
 */
static void rtc_config(void)
{
    uint32_t err_code;

    //Initialize RTC instance
    nrf_drv_rtc_config_t config = NRF_DRV_RTC_DEFAULT_CONFIG;
    config.prescaler = 4095;
    err_code = nrf_drv_rtc_init(&amp;amp;rtc, &amp;amp;config, rtc_handler);
    APP_ERROR_CHECK(err_code);

    //Enable tick event &amp;amp; interrupt
    //nrf_drv_rtc_tick_enable(&amp;amp;rtc,true);

    //Set compare channel to trigger interrupt after COMPARE_COUNTERTIME seconds
    err_code = nrf_drv_rtc_cc_set(&amp;amp;rtc,0,COMPARE_COUNTERTIME * 8,true);
    APP_ERROR_CHECK(err_code);

    //Power on RTC instance
    nrf_drv_rtc_enable(&amp;amp;rtc);
}

/**
 * @brief Function for application main entry.
 */
int main(void)
{
    //leds_config();

    lfclk_config();

    rtc_config();

#if 1
//NRF_POWER-&amp;gt;RAM[0].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[1].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[2].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[3].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[4].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[5].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[6].POWERCLR = 0xFFFF;
NRF_POWER-&amp;gt;RAM[7].POWERCLR = 0xFFFF;
//NRF_POWER-&amp;gt;RAM[8].POWERCLR = 0xFFFF;
#endif

    while (true)
    {
        __SEV();
        __WFE();
        __WFE();
    }
}


/**  @} */
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I have modified the RTC example in SDK_16.0/examples/hardware_peripherals/rtc. In sdk_config.h kept LFCLK source as RC oscillator. I have commented RTC TICK events, LEDs. I have powered off all RAM banks except 0 and 8. I see 60uA current continuously other than COMPARE event.&lt;/p&gt;
&lt;p&gt;Can you please suggest why I am seeing that much current? I have to see 1.5uA as in the first query.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/207924?ContentTypeID=1</link><pubDate>Wed, 04 Sep 2019 11:55:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:063f4c03-ebf0-465b-9c07-196ac18f51b6</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;1.&amp;nbsp;The VIN 3-5 pin on P20 is not connected to VDDH, just the internal 5V regulator, so it will only power the nRF in VDD mode. I asked a developer for confirmation, and the only ways to run the nRF52840 in VDDH mode on the DK are USB (J3) and through the Li-Po battery connectors (J6 or P27).&lt;/p&gt;
&lt;p&gt;2.&amp;nbsp;Correct, the PPK is not intended to use to measure chips in VDDH mode, so you should rather use an oscilloscope or power analyzer.&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: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/207806?ContentTypeID=1</link><pubDate>Wed, 04 Sep 2019 07:40:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c8ac5619-d1be-49ee-bd55-2a29a910cfbf</guid><dc:creator>Sridhar Jonnavittula</dc:creator><description>&lt;p&gt;Ok. Please answer couple of questions:&lt;/p&gt;
&lt;p&gt;1. I actually tried attaching 5V from external regulated power supply to&amp;nbsp;VIN 3&amp;ndash;5 pin on P20 (3.0&amp;ndash;5.0 V)(This is the only source). In this condition when I read the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fpower.html&amp;amp;cp=3_0_0_4_2_0_0&amp;amp;anchor=unique_1782262349"&gt;MAINREGSTATUS&lt;/a&gt;&amp;nbsp;register I see A=0 (Normal voltage VDD). Why is it so?&lt;/p&gt;
&lt;p&gt;2. When I supply from Li-Po/ other than USB J2 port, I cant use Power profiler kit right? In this case do I need Oscilloscope?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/207793?ContentTypeID=1</link><pubDate>Wed, 04 Sep 2019 07:08:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d3fb6475-4744-4225-8b3e-41cc7192ed83</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Susheel is out of office, so I have been assigned your case.&amp;nbsp;In order to achieve this current consumption on the Development Kit (DK), you have to power the board through VDDH. There are a few ways to do this on the DK. Check out Section 8.3 (Power Supply) in the DK user guide. The recommended option is using the Lithium polymer battery connectors J6 or P27 (2.5V-5.0V).&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: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/207571?ContentTypeID=1</link><pubDate>Tue, 03 Sep 2019 07:51:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:22c224fa-e827-4ce0-827b-09485645d6b6</guid><dc:creator>Sridhar Jonnavittula</dc:creator><description>&lt;p&gt;&lt;span&gt;If powered at J3 of PCA10056 DK(USB on long side labled nRF USB) and read&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fpower.html&amp;amp;cp=3_0_0_4_2_0_0&amp;amp;anchor=unique_1782262349"&gt;MAINREGSTATUS&lt;/a&gt;, I observe A=1.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Actually I wanted to see this below attached current number and I am not able to find any other way other than powering at J3&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1567496945527v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Please suggest if there is any other way.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/207352?ContentTypeID=1</link><pubDate>Mon, 02 Sep 2019 10:30:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4488b967-3ba8-4251-af6a-6436e0da8d97</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;Not sure what you are trying to get with the &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fpower.html&amp;amp;cp=3_0_0_4_2_0_0&amp;amp;anchor=unique_1782262349"&gt;MAINREGSTATUS&lt;/a&gt;. This is just a status register telling you which pins you have connected to. Which J3 connector are you referring to?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/207088?ContentTypeID=1</link><pubDate>Fri, 30 Aug 2019 09:55:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:06f2deea-d970-4d72-86aa-578d0b125422</guid><dc:creator>Sridhar Jonnavittula</dc:creator><description>&lt;p&gt;Please tell me the different possible input supply hardware configurations on nRF52840 DK to achieve High voltage mode(as per below screenshot). Because I don&amp;#39;t find any, other than J3 connector.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1567158864597v1.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Source code to achieve 1.5uA standby current</title><link>https://devzone.nordicsemi.com/thread/206410?ContentTypeID=1</link><pubDate>Tue, 27 Aug 2019 13:24:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bed06040-0bb9-4045-bdec-c7d41c93496c</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;I get this when i try your code on Blinky example, About 1.3uA average current&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/support-attachments/beef5d1b77644c448dabff31668f3a47-37a7467cc229454e89e93d4c47622973/pastedimage1566912232714v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>