<?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>nrf connect sdk 2.7.0 using gpiote interrupt - no callback trigger</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/123328/nrf-connect-sdk-2-7-0-using-gpiote-interrupt---no-callback-trigger</link><description>I&amp;#39;m using the code below to trigger a callback on pin rising edge. 
 Unfortunately, the counter is not being increased at all. Any reason why? I used multiple sources already to find out what could be missing in my application, for example: - 
 - https</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 30 Jul 2025 12:00:32 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/123328/nrf-connect-sdk-2-7-0-using-gpiote-interrupt---no-callback-trigger" /><item><title>RE: nrf connect sdk 2.7.0 using gpiote interrupt - no callback trigger</title><link>https://devzone.nordicsemi.com/thread/544072?ContentTypeID=1</link><pubDate>Wed, 30 Jul 2025 12:00:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:db00fa2a-7d92-467b-8241-8ebe060b1894</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;probably because&amp;nbsp;nrfx_gpiote_0_irq_handler&amp;nbsp;is autogenerated and might be not resolved correctly. Also using hardcoded NRF_GPIOTE register address might not be the correct parameter here as this is not the same as driver instance&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf connect sdk 2.7.0 using gpiote interrupt - no callback trigger</title><link>https://devzone.nordicsemi.com/thread/544066?ContentTypeID=1</link><pubDate>Wed, 30 Jul 2025 11:38:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bcc58009-ce90-43a0-8a7e-63ee3b2f01b6</guid><dc:creator>Mart</dc:creator><description>&lt;p&gt;Changing the line&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;IRQ_DIRECT_CONNECT(NRFX_IRQ_NUMBER_GET(NRF_GPIOTE), IRQ_PRIO_LOWEST, nrfx_gpiote_0_irq_handler,0);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;to:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;pre class="ui-code" data-mode="text"&gt;IRQ_DIRECT_CONNECT(NRFX_IRQ_NUMBER_GET(NRF_GPIOTE_INST_GET(0)), IRQ_PRIO_LOWEST, NRFX_GPIOTE_INST_HANDLER_GET(0), 0);&lt;/pre&gt;&lt;span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;solved my issue&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;Yet, I would like to have some more details on what this does.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>