<?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>Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/38360/disabling-the-gpiote-interrupt-using-intenclr</link><description>Hi, I am using nrf52832 board. I was trying to disable the GPIOTE interrupt for a particular event (Event4) using INTENCLR register. My code was NRF_GPIOTE-&amp;gt;INTENCLR = 1 &amp;lt; &amp;lt; 4; But still the interrupt is not getting disabled. How to do the disabling actually</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 05 Jul 2021 10:51:21 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/38360/disabling-the-gpiote-interrupt-using-intenclr" /><item><title>RE: Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/thread/318603?ContentTypeID=1</link><pubDate>Mon, 05 Jul 2021 10:51:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7210953c-b24a-4055-9bab-de5a4d6d834a</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Did you figure this out?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It is not recommended to re-open old cases like this, it is better to open a new devzone ticket.&lt;/p&gt;
&lt;p&gt;I have been on vacation for the last couple of weeks, and didn&amp;#39;t notice it.&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: Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/thread/316125?ContentTypeID=1</link><pubDate>Sat, 19 Jun 2021 09:21:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:465c153a-525d-4ef2-a31a-deef1566d866</guid><dc:creator>Venus_Bilandi</dc:creator><description>&lt;p&gt;Hi, Can you help with the same problem&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I am enabling a interrupt using this code&lt;br /&gt; &lt;pre class="ui-code" data-mode="c_cpp"&gt;        nrf_drv_gpiote_in_config_t gpiote_inConfig =
        {
            .sense           = senseTrnsiton,                         \
            .pull            = GPIO_PIN_CNF_PULL_Pullup,              \
            .is_watcher      = false,                                 \
            .hi_accuracy     = true,                                  \
            .skip_gpio_setup = false,                                 \
        };
        err_code = nrf_drv_gpiote_in_init(pin_number, &amp;amp;gpiote_inConfig, gpiote_drvInEventhandler);
        *gpiote_appInEventHandler[pin_number] = actionEvent;
        APP_ERROR_CHECK(err_code);
        nrf_drv_gpiote_in_event_enable(pin_number, true);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;and want to disable this event inside the event handler as soon as it triggers.&lt;/p&gt;
&lt;p&gt;I am calling this function to disable interrupt.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;nrf_drv_gpiote_in_event_disable(pin_number);
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;But its not working. Please help.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/thread/148797?ContentTypeID=1</link><pubDate>Fri, 14 Sep 2018 11:38:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:39b6b733-4e02-4f06-8385-ed43151fd555</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;What does your interrupt handler look like?&lt;/p&gt;
&lt;p&gt;Could you try to clear the event in the disable interrupt functions, in addition to writing to the INTENCLR register?&lt;/p&gt;
&lt;p&gt;Like so:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;NRF_GPIOTE-&amp;gt;INTENCLR = LOGIC_HIGH &amp;lt;&amp;lt; EVENT5;&lt;br /&gt;NRF_GPIOTE-&amp;gt;EVENTS_IN[5] = 0;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards&lt;br /&gt;Torbjørn&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/thread/148715?ContentTypeID=1</link><pubDate>Fri, 14 Sep 2018 05:15:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5e255f6b-08b0-4749-b512-31b85f635933</guid><dc:creator>Indhu N</dc:creator><description>&lt;div dir="auto"&gt;
&lt;div&gt;
&lt;div&gt;Hi,&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Here is the section of code in which I am trying to disable the GPIOTE interrupts. This product communicates to Mobile device using BLE. Can you please go through this and suggest a solution?&lt;/div&gt;
&lt;div&gt;
&lt;div class="adm"&gt;
&lt;div class="ajR h4" id="q_165d1b5df10c6cfc_1"&gt;
&lt;div class="ajT"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="im"&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;#define LOGIC_HIGH&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/div&gt;
&lt;div&gt;#define LOGIC_LOW&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div class="adm"&gt;
&lt;div class="ajR h4" id="q_165d1b5df10c6cfc_3"&gt;
&lt;div class="ajT"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="im"&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;enum interrupt_events_t {&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; EVENT0 = 0,&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; EVENT1,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; EVENT2,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; EVENT3,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; EVENT4,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; EVENT5,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; EVENT6,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; EVENT7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;};&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;void enableTrashBinInterrupt() {&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; NRF_GPIOTE-&amp;gt;INTENSET = LOGIC_HIGH &amp;lt;&amp;lt; EVENT5;&lt;/div&gt;
&lt;div&gt;}&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;void enableTrayLidInterrupt() {&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; NRF_GPIOTE-&amp;gt;INTENSET = LOGIC_HIGH &amp;lt;&amp;lt; EVENT4;&lt;/div&gt;
&lt;div&gt;}&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;void disableTrashBinInterrupt() {&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; NRF_GPIOTE-&amp;gt;INTENCLR = LOGIC_HIGH &amp;lt;&amp;lt; EVENT5;&lt;/div&gt;
&lt;div&gt;}&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;void disableTrayLidInterrupt() {&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; NRF_GPIOTE-&amp;gt;INTENCLR = LOGIC_HIGH &amp;lt;&amp;lt; EVENT4;&lt;/div&gt;
&lt;span&gt;}&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div dir="auto"&gt;&lt;/div&gt;
&lt;span class="m_-8763106352240333060gmail-im"&gt;int main(void) {&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div class="adm"&gt;
&lt;div class="ajR h4" id="q_165d1b5df10c6cfc_5"&gt;
&lt;div class="ajT"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="im"&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; /* Switches, LEDs, ADC initialisations*/&lt;/div&gt;
&lt;div dir="auto"&gt;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div class="adm"&gt;
&lt;div class="ajR h4" id="q_165d1b5df10c6cfc_7"&gt;
&lt;div class="ajT"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="im"&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; if (deviceStatus == TEST_PASSED) {&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lockTrayLidAndTrashBin();&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; goToHomePosition();&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;enableTrashBinInterrupt();&lt;/span&gt;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; enableTrayLidInterrupt();&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div class="adm"&gt;
&lt;div class="ajR h4" id="q_165d1b5df10c6cfc_9"&gt;
&lt;div class="ajT"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="im"&gt;
&lt;div dir="auto"&gt;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (deviceCalibrationStatus == DEVICE_CALIBRATED)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; disposeTip();&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (currentState != ERROR_STATE)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; goToLoadingPosition();&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; unlockTrayLidAndTrashBin();&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; runConfirmationBuzzer();&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; nrf_delay_ms(100);&amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; disableTrashBinInterrupt();&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; disableTrayLidInterrupt();&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div dir="auto"&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; err_code = advertisementInit(false);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Initialize the bluetooth communication&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; bootupErrorHandler(err_code);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; if (err_code == NRF_SUCCESS) {&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; err_code = startAdvertisement();&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bootupErrorHandler(err_code);&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; }&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div class="yj6qo ajU"&gt;
&lt;div class="ajR" id=":ly"&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1536902113785v1.gif" alt=" " /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class="adL"&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; while(1) {&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; // waiting for start command from apk&lt;/div&gt;
&lt;div dir="auto"&gt;&amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div dir="auto"&gt;&lt;/div&gt;
&lt;div dir="auto"&gt;}&lt;/div&gt;
&lt;div dir="auto"&gt;&lt;/div&gt;
&lt;div dir="auto"&gt;&lt;/div&gt;
&lt;div dir="auto"&gt;Thanks&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/thread/148650?ContentTypeID=1</link><pubDate>Thu, 13 Sep 2018 13:55:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:413b8542-f896-46ac-99a5-a6e107d1da5a</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you describe the issue in a bit more detail?&lt;/p&gt;
&lt;p&gt;Could there be any other GPIOTE events that trigger the interrupt, or are you sure it is the IN[4] event that is the cause?&lt;/p&gt;
&lt;p&gt;Are you able to share your code so I can have a look at it?&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: Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/thread/148414?ContentTypeID=1</link><pubDate>Wed, 12 Sep 2018 12:51:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:37175ee6-0028-4b27-825b-7044ab58197c</guid><dc:creator>Indhu N</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Can we have a telephonic discussion regarding this issue?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/thread/148361?ContentTypeID=1</link><pubDate>Wed, 12 Sep 2018 09:13:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4d748498-81a9-4ac5-9485-5d27b9ebde51</guid><dc:creator>Indhu N</dc:creator><description>&lt;p&gt;Hi Turbo J,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There is no white space between &amp;quot;&amp;lt;&amp;quot; and I don&amp;#39;t get any compiler error.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Disabling the GPIOTE interrupt using INTENCLR</title><link>https://devzone.nordicsemi.com/thread/147977?ContentTypeID=1</link><pubDate>Mon, 10 Sep 2018 09:52:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f8a70573-7f81-47dd-a38a-3bca9815dc22</guid><dc:creator>Turbo J</dc:creator><description>&lt;p&gt;NRF_GPIOTE-&amp;gt;INTENCLR = NRF_GPIOTE_INT_IN4_MASK;&lt;/p&gt;
&lt;p&gt;That should disable the interrupt for IN[4] event.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Not sure what your code does, there seems to be&amp;nbsp; white space between the &amp;quot;&amp;lt;&amp;quot;. Should yield a compiler error IMHO.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>