<?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>Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/38811/problem-with-nrf24le1-it-is-consuming-1-2ma-current-in-register-retention-mode</link><description>Hello, 
 I have been trying to push down the current consumption by nRF24LE1 module that I am working with. I enabled register retention mode with the following code: 
 https://www.nordicsemi.com/eng/Nordic-FAQ/All/How-to-setup-register-retention-mode</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 12 Mar 2019 09:16:12 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/38811/problem-with-nrf24le1-it-is-consuming-1-2ma-current-in-register-retention-mode" /><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/175570?ContentTypeID=1</link><pubDate>Tue, 12 Mar 2019 09:16:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:36ad4c6a-654d-4b3b-88e1-7abd492606d4</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Ok, I will close the case then.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/175544?ContentTypeID=1</link><pubDate>Tue, 12 Mar 2019 08:29:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f46cdf98-497b-44b6-9d26-fac55103eddb</guid><dc:creator>infibit</dc:creator><description>&lt;p&gt;I left the problem.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/175520?ContentTypeID=1</link><pubDate>Tue, 12 Mar 2019 07:24:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fb98f2e7-8dd0-41ce-a8a4-b704804a75be</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Sorry for the slow response, somehow this case dropped out of my list....&lt;/p&gt;
&lt;p&gt;Did you ever figure this out, or are you still struggling with the current consumption of the nRF24LE1 device?&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Torbjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/150039?ContentTypeID=1</link><pubDate>Mon, 24 Sep 2018 12:02:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7d3cf78a-6909-4a8c-9128-e3132d8f5349</guid><dc:creator>infibit</dc:creator><description>&lt;p&gt;This is fixed now. Thanks a lot.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/150035?ContentTypeID=1</link><pubDate>Mon, 24 Sep 2018 11:56:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:108ce668-0423-4958-a956-a0da8734913a</guid><dc:creator>infibit</dc:creator><description>&lt;p&gt;Here is my code.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#include &amp;lt;Nordic\reg24le1.h&amp;gt;
#include&amp;quot;hal_clk.h&amp;quot;

void wakeup_irq() interrupt INTERRUPT_WUOPIRQ
{
// Turn on LED
//P22 = 1;
}

void main(void)
{
		hal_clk_set_freq(HAL_CLK_125KHZ);
	// Wake up on pin P2.1 active-high
WUOPC0 = 0x02;

P0 = 0x00;
P1 = 0x00;
P2 = 0x00;
P3 = 0x00;

P0DIR = 0x02;
P1DIR = 0x00;
P2DIR = 0x00;
P3DIR = 0x00;

IEN1 = 0x08;
EA = 1;

while(1)
{
		
// Push button to go to power down mode, release button to wakeup
while(P01==1)
{

}
// Register retention mode
PWRDWN = 0x04;
// Clear power down
PWRDWN = 0x00;

}
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;In this code as long as P0.1 is tied to ground, the module is in register retention mode consuming about 0.002mA of current. Now the moment I release P0.1 pin from ground it goes into high power mode.&lt;/p&gt;
&lt;p&gt;Now what I need is that the nrf24le1 should be in low power mode to start with and when ever there is high voltage at the P0.1 pin then it should exit power saving and resume to normal mode. I tried changing the code several ways but not able to achieve the functionality.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/150014?ContentTypeID=1</link><pubDate>Mon, 24 Sep 2018 11:22:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:adb829c7-897f-4626-8cc8-eda77b238f24</guid><dc:creator>infibit</dc:creator><description>&lt;p&gt;Sorry I am using 32 pin LE1. I will confirm this and post you the code here.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/150009?ContentTypeID=1</link><pubDate>Mon, 24 Sep 2018 11:18:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:910f2b44-9f89-490a-aa4b-799bd7d03944</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi Sriranjan&lt;/p&gt;
&lt;p&gt;The issue should be fixed by now, and you should be able to open new cases.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If this is not the case please let me know &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Torbjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/150008?ContentTypeID=1</link><pubDate>Mon, 24 Sep 2018 11:16:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c8e57f26-d41f-43a3-95c6-592d4218bbd6</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi Sriranjan&lt;/p&gt;
&lt;p&gt;Nordic support is staffed during standard office hours in Europe, not during weekends. To allow room for time zone differences we aim to provide a reply within 24 hours, not counting Saturday and Sunday.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As discussed in the other case, WUOPC0 = 0x02 corresponds to wakeup on pin on P0.1 if you use the 24-pin LE1. If the pin is high when you try to enter sleep it will wake up again immediately, which could explain why the current consumption is higher before you disable the wake up on pin functionality.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you double check this?&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Torbjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/149950?ContentTypeID=1</link><pubDate>Mon, 24 Sep 2018 08:21:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c799a888-3a27-452e-89aa-c4a0777e581e</guid><dc:creator>infibit</dc:creator><description>&lt;p&gt;Dear Support engineer I am waiting for your reply on this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/149925?ContentTypeID=1</link><pubDate>Mon, 24 Sep 2018 05:56:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:26c04248-97b5-4955-bbb2-64e0c9d1e69e</guid><dc:creator>infibit</dc:creator><description>&lt;p&gt;Any one can help me here?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem with NRF24LE1, it is consuming 1.2mA current in register retention mode</title><link>https://devzone.nordicsemi.com/thread/149920?ContentTypeID=1</link><pubDate>Sun, 23 Sep 2018 18:21:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:02819b3f-552c-41f5-a84b-7a191bace114</guid><dc:creator>infibit</dc:creator><description>&lt;p&gt;I am unable to add a new question or raise a private support ticket because there is a bug in your website and the form options wont load. Even I am unable to edit the experience the edit experience field in my profile to raise a private support ticket because the experience menu wont load. Looks like there are many bugs in the Nordic Dev zone website.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>