<?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>Current draw when NFCT is active</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/87403/current-draw-when-nfct-is-active</link><description>Hello DevZone, 
 
 I have a project where I want to use NFCT for communicating and charging. I have used the NRFX_NFCT library to read and write to my transmitter because my transmitter does not support using NDEF messages. 
 When the NFC field is on</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 09 May 2022 08:47:49 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/87403/current-draw-when-nfct-is-active" /><item><title>RE: Current draw when NFCT is active</title><link>https://devzone.nordicsemi.com/thread/366859?ContentTypeID=1</link><pubDate>Mon, 09 May 2022 08:47:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9e2751bc-c8b3-4178-a02c-aaf3a1f164e1</guid><dc:creator>Stian R&amp;#248;ed Hafskjold</dc:creator><description>&lt;p&gt;Hi, I did some measurements here, and after changing the timer period from 100 us to 10000 us it drops from about 3 mA to 1.8 mA. This is when powering VDD with 3V and enabling the DCDC.&lt;/p&gt;
&lt;p&gt;I tried to set up a very simple SENSE test example just to see the minimum achievable current, and just calling TASKS_SENSE makes the NFC peripheral consume about 500 uA, when the tag is in the NFC field, according to spec. Then after starting the HFXO and the TIMER that is needed for the workaround, I get to a base current of 1 mA, when the tag is in the field. I see that if I call TASKS_STARTTX after EVENTS_FIELDDETECTED the current jumps up to 1.8mA, same as when using the NFCT library. But I believe this should go down to 1 mA after the TX/RX is finished. So there might be some issues here. I will continue investigate and let you know.&lt;/p&gt;
&lt;p&gt;Maybe you can try the following code just to see if you get 1 mA as well?&lt;/p&gt;
&lt;pre&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NRF_CLOCK-&amp;gt;TASKS_HFCLKSTART = 1;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;while(!NRF_CLOCK-&amp;gt;EVENTS_HFCLKSTARTED){}&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;NRF_CLOCK-&amp;gt;EVENTS_HFCLKSTARTED = 0;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;NRF_TIMER1-&amp;gt;TASKS_START = 1;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;NRF_NFCT-&amp;gt;TASKS_SENSE = 1;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;NRF_NFCT-&amp;gt;SHORTS = 3;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current draw when NFCT is active</title><link>https://devzone.nordicsemi.com/thread/366355?ContentTypeID=1</link><pubDate>Thu, 05 May 2022 06:36:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a16429b7-7d0e-4fef-b0f6-bcc3985d8a51</guid><dc:creator>T IJ</dc:creator><description>&lt;p&gt;Changing the time to 10000 us does not show any improvement in the overall current consumption&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1651732387430v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Even changing this value to more does not any improvement in the current consumption.&lt;/p&gt;
&lt;p&gt;And yes my tag is constantly in an NFC field&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current draw when NFCT is active</title><link>https://devzone.nordicsemi.com/thread/366305?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 15:36:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:838fe6b2-c5ba-4521-b0a1-d4a513c62c2e</guid><dc:creator>Stian R&amp;#248;ed Hafskjold</dc:creator><description>&lt;p&gt;The reason is that the EVENTS_FIELDDETECTED event is unreliable:&lt;a href="https://infocenter.nordicsemi.com/topic/errata_nRF52832_Rev3/ERR/nRF52832/Rev3/latest/anomaly_832_79.html?cp=4_2_1_0_1_19"&gt; Erratum 79&lt;/a&gt; And as a workaround, the driver sets up the TIMER peripheral to poll periodically (default every 100 us) to check if the field is lost. This consumes quite a lot of current.&lt;/p&gt;
&lt;p&gt;It is possible to change the period of the timer to achieve the desired tradeoff between current consumption optimization and field lost detection latency. You can change timer period parameter in the modules\nrfx\drivers\src\nrfx_nfct.c. The parameter value declaration is more or less at the beginning of the file:&lt;/p&gt;
&lt;pre style="font-size:1em;margin:10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;#define NRFX_NFCT_FIELD_TIMER_PERIOD 100  /**&amp;lt; Field polling period in us. */&lt;/span&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current draw when NFCT is active</title><link>https://devzone.nordicsemi.com/thread/366256?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 13:17:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:04ab400a-c77c-40a0-9a04-6d35454e36ea</guid><dc:creator>T IJ</dc:creator><description>&lt;p&gt;I see this when the tag is constantly in a field, when the tag is not present in the field the current draw is approx 400uA. If a high current is expected, can you tell me what is causing this high current flow?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current draw when NFCT is active</title><link>https://devzone.nordicsemi.com/thread/366246?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 12:56:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:419e2d70-9a68-460e-a30e-0b9e9e614f3e</guid><dc:creator>Stian R&amp;#248;ed Hafskjold</dc:creator><description>&lt;p&gt;Hi, do you see this just by activating the NFC tag? Or only when holding a reader over the field? When activating the tag you should not get a very high current, but if the reader is constantly in the field, a high current is expected.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Stian&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current draw when NFCT is active</title><link>https://devzone.nordicsemi.com/thread/366233?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 12:20:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fa5e6938-22cd-44b3-9634-1d6159cee23e</guid><dc:creator>T IJ</dc:creator><description>&lt;p&gt;Anyone got some info on this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>