<?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>GPIOTE current consumption in nrf52832</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/72644/gpiote-current-consumption-in-nrf52832</link><description>Hi everyone, 
 I am working on nrf52832 using sdk15.0.0 using ble_app_beacon 
 I getting 3mA current when falling edge detected, i want to set my device as low low power consume. 
 which setting need to required when nrf_drv_gpiote.c file used on custom</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sat, 13 Mar 2021 08:15:41 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/72644/gpiote-current-consumption-in-nrf52832" /><item><title>RE: GPIOTE current consumption in nrf52832</title><link>https://devzone.nordicsemi.com/thread/299583?ContentTypeID=1</link><pubDate>Sat, 13 Mar 2021 08:15:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8407e705-f17d-4c9d-8930-f246282a6082</guid><dc:creator>niebert</dc:creator><description>&lt;p&gt;Waiting in an interrupt handler is almost always bad practice. It would be better to handle the two events separately with handler calls. You have to organize your program logic in some way to make that possible. There are many options for that.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPIOTE current consumption in nrf52832</title><link>https://devzone.nordicsemi.com/thread/299582?ContentTypeID=1</link><pubDate>Sat, 13 Mar 2021 07:45:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4bff138f-cf6a-47a8-ba66-8ffb7043638d</guid><dc:creator>ande_dewal</dc:creator><description>&lt;p&gt;Thanks for reply,&lt;/p&gt;
&lt;p&gt;We are waiting in GPIOTE_handler() when falling edge is detected until rising edge. The Low_pulse time is nearly about 5 to 7seconds for that much time current&amp;nbsp; consumption is 3.44mA. after that it is 0.02mA.&lt;/p&gt;
&lt;p&gt;what should I do to reduce current consumption in GPIOTE_handler()?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPIOTE current consumption in nrf52832</title><link>https://devzone.nordicsemi.com/thread/299580?ContentTypeID=1</link><pubDate>Sat, 13 Mar 2021 07:28:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4cd08afc-962c-4427-8876-c448d161c2a5</guid><dc:creator>niebert</dc:creator><description>&lt;p&gt;A GPIO configured the way you do it does not consume anything. The 3mA look like the consumption of a running core that is not sleeping. So it is a question of what your software does after the edge.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPIOTE current consumption in nrf52832</title><link>https://devzone.nordicsemi.com/thread/299578?ContentTypeID=1</link><pubDate>Sat, 13 Mar 2021 06:59:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:015007df-7a51-4f54-882a-11aa21295791</guid><dc:creator>ande_dewal</dc:creator><description>&lt;p&gt;hi everyone,&lt;/p&gt;
&lt;p&gt;After disable radio i am getting same current 3.29mA.&lt;/p&gt;
&lt;p&gt;NRF_RADIO-&amp;gt;TASKS_STOP=1;&lt;br /&gt;NRF_RADIO-&amp;gt;POWER=0;&lt;br /&gt;NRF_RADIO-&amp;gt;TASKS_DISABLE=1;&lt;/p&gt;
&lt;p&gt;disable radio before gpiote_setup.&lt;/p&gt;
&lt;p&gt;plaese, someone help me to reduce current on my custom board.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPIOTE current consumption in nrf52832</title><link>https://devzone.nordicsemi.com/thread/299498?ContentTypeID=1</link><pubDate>Fri, 12 Mar 2021 14:00:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:757c191d-be63-411b-84c8-c6ed9693bc83</guid><dc:creator>ande_dewal</dc:creator><description>&lt;p&gt;thanks for reply,&lt;/p&gt;
&lt;p&gt;I am using DCDCE for low current consumption.&lt;/p&gt;
&lt;p&gt;NRF_POWER-&amp;gt;DCDCEN = 1;&lt;br /&gt;//disabling all interupts from peripherals &lt;br /&gt;NRF_CLOCK-&amp;gt;INTENCLR=0xFFFFFFFF;&lt;br /&gt;NRF_UART0-&amp;gt;INTENCLR=0xFFFFFFFF;&lt;br /&gt;NRF_TWI0-&amp;gt;INTENCLR=0xFFFFFFFF;&lt;br /&gt;NRF_TWI1-&amp;gt;INTENCLR=0xFFFFFFFF;&lt;br /&gt;NRF_SPI0-&amp;gt;INTENCLR=0xFFFFFFFF;&lt;br /&gt; //log_init();&lt;br /&gt;//timers_init(); &lt;br /&gt;ret_code_t err_code;&lt;br /&gt;err_code = nrf_drv_gpiote_init();&lt;br /&gt;APP_ERROR_CHECK(err_code);&lt;br /&gt;gpiote_setup(); //interrupt defination for pulse pin&lt;br /&gt;//sd_power_dcdc_mode_set(NRF_POWER_DCDC_ENABLE);&lt;br /&gt;NRF_POWER-&amp;gt;DCDCEN = 1;&lt;/p&gt;
&lt;p&gt;after calling gpiote_setup(),&amp;nbsp;&lt;span&gt;NRF_POWER-&amp;gt;DCDCEN register disabled.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Due to this my device consume more current.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;please help me to solve this problem.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPIOTE current consumption in nrf52832</title><link>https://devzone.nordicsemi.com/thread/299423?ContentTypeID=1</link><pubDate>Fri, 12 Mar 2021 09:53:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:993cf60f-ae4a-4181-bcfe-57207161705f</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Is the current static at 3mA, or is it only a short period? Most of the power should be used by the radio, so you should see a current consumption that varies accordingly to the radio activity. Adding a GPIOTE IN channel should only increase the current of about 0.1 µA. How much current do you measure if you do the same on the development kit? And how do you measure the current?&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPIOTE current consumption in nrf52832</title><link>https://devzone.nordicsemi.com/thread/299378?ContentTypeID=1</link><pubDate>Fri, 12 Mar 2021 04:59:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a28c36ce-29b2-4bc7-8a85-11ba801ff0ef</guid><dc:creator>ande_dewal</dc:creator><description>&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;please someone reply me,i am waiting for your reply. thanks&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>