<?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>NRF24LE1 qfn24 deep sleep current too high</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/26424/nrf24le1-qfn24-deep-sleep-current-too-high</link><description>Hi. I&amp;#39;ve encountered a problem with some of my nrf24le1 chip (near every 5th piece) - current in deep sleep mode is very high (30-80 uA), if i change it to another chip, then current is normal (less than 1 uA).
I&amp;#39;ve noticed, that if i erase InfoPage</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 14 Feb 2018 11:38:34 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/26424/nrf24le1-qfn24-deep-sleep-current-too-high" /><item><title>RE: NRF24LE1 qfn24 deep sleep current too high</title><link>https://devzone.nordicsemi.com/thread/120808?ContentTypeID=1</link><pubDate>Wed, 14 Feb 2018 11:38:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a5badb09-f959-4f40-b9d2-322496bec60f</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;How to enable/disable debug mode is described in figure 16 on page 15 of the &lt;a href="http://infocenter.nordicsemi.com/pdf/nan_15.pdf"&gt;Keil C51 Appnote&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you are new to development for the nRF24LE1 you might want to read through the whole appnote, it has a lot of helpful information.&amp;nbsp;&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: NRF24LE1 qfn24 deep sleep current too high</title><link>https://devzone.nordicsemi.com/thread/120649?ContentTypeID=1</link><pubDate>Tue, 13 Feb 2018 04:46:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:31a7680e-b867-4ef6-8948-5d589065a609</guid><dc:creator>uldara</dc:creator><description>&lt;p&gt;i don&amp;#39;t know how to disable debug mode. could you show me ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF24LE1 qfn24 deep sleep current too high</title><link>https://devzone.nordicsemi.com/thread/120536?ContentTypeID=1</link><pubDate>Mon, 12 Feb 2018 10:05:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:62310559-f569-44e1-aa29-5efc04a2837a</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Make sure you don&amp;#39;t flash the chip with debug mode. If you just leave your code with&amp;nbsp;&lt;/p&gt;
&lt;p&gt;while(1){&lt;span&gt;&amp;nbsp;PWRDWN = 0x01;} what current do you have ?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF24LE1 qfn24 deep sleep current too high</title><link>https://devzone.nordicsemi.com/thread/120525?ContentTypeID=1</link><pubDate>Mon, 12 Feb 2018 09:14:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d223fb7b-77f0-4b3a-8aba-f7a820073be0</guid><dc:creator>uldara</dc:creator><description>&lt;p&gt;&lt;span&gt;i have the sample problem with power consumption&amp;nbsp;600 - 700 uA&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;do you have any idea ?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#include &amp;lt;reg24le1.h&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#include &amp;lt;stdint.h&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#include &amp;lt;stdbool.h&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#include &amp;quot;hal_delay.h&amp;quot;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#define LED P13&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// LED output&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#define RSW P14 .&amp;nbsp; &amp;nbsp;// Button wake up&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;void main()&lt;/p&gt;
&lt;p&gt;&lt;span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; P1DIR&amp;nbsp; = 0x10;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; LED = 0;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; OPMCON = 0x00;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; OPMCON = 0x00;&amp;nbsp;// Open latch&lt;/p&gt;
&lt;p&gt;&lt;span&gt;while(1)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; if(PWRDWN &amp;amp; 0x80)&amp;nbsp;&lt;/span&gt;&lt;span&gt;{&amp;nbsp; &amp;nbsp;&lt;/span&gt;PWRDWN = 0;&amp;nbsp;&lt;span&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; WUOPC1 = 0x10;&amp;nbsp; &amp;nbsp; &amp;nbsp; // Wake up on Pin P14&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;if(P14 == 1)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; LED = 1;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;delay_ms(200);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; LED = 0;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt; OPMCON = 0x06;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;PWRDWN = 0x01;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;else&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;LED = 1; delay_ms(200);&amp;nbsp;&amp;nbsp;&lt;/span&gt;LED = 0;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OPMCON = 0x02;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PWRDWN = 0x01;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; }&lt;br /&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&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: NRF24LE1 qfn24 deep sleep current too high</title><link>https://devzone.nordicsemi.com/thread/103989?ContentTypeID=1</link><pubDate>Tue, 31 Oct 2017 13:35:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9f24afc8-590b-4e5e-836e-07daf65fc939</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Subver,&lt;/p&gt;
&lt;p&gt;Could you post the code you used for testing ? Erasing Infopage is not something we recommend as it contains calibration data stored in production and varied between chips.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>