<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: LPC43xx Interrupts with PINTSEL1 are not working in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556072#M15095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by sadfsdf on Mon Oct 26 23:55:39 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;nvicDisableVector(PIN_INT1_IRQn);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Setup GPIO6 Pin 12*/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;palSetPadMode(6, 12, PAL_MODE_INPUT);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Set up GPIO6 Pin12 as interrupt */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_SCU-&amp;gt;PINTSEL1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |= (6 &amp;lt;&amp;lt; 29) | (0xC &amp;lt;&amp;lt; 24);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//LPC_GPIO_PIN_INT-&amp;gt;IST&amp;nbsp;&amp;nbsp; |= 1 &amp;lt;&amp;lt; 7; // Clear interrupts&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;ISEL&amp;nbsp; |= 0 &amp;lt;&amp;lt; 7; // Edge sensitive&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;SIENR |= 1 &amp;lt;&amp;lt; 7; // Enable rising&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;SIENF |= 1 &amp;lt;&amp;lt; 7; // Enable falling&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Enable interrupts */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nvicEnableVector(PIN_INT1_IRQn, CORTEX_PRIORITY_MASK(2));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That is my working code. The real issue was comment line with LPC_GPIO_PIN_INT-&amp;gt;IST or put 0 there. Sorry for disinfo. Now it works. Thank you , you responds were very helpfull.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 18:39:29 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T18:39:29Z</dc:date>
    <item>
      <title>LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556065#M15088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by sadfsdf on Wed Oct 21 03:18:15 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i was working with with Proximity Sensor and I need to get interrupt from it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;the problem is that I already have 4 interrupts so PINTSEL0 is full. And i tried to do the same with PINTSEL1..but it s not working. And When i try to change it to PINTSEL0 it works. Do you have any ideas about that. Here is my code. &lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;void proximityInt_init(const DRV_EXTERNAL_INTERRUPT_CALLBACK newProximityInt1Callback)&lt;BR /&gt;{&lt;BR /&gt;proximityInt1Callback = newProximityInt1Callback;&lt;BR /&gt;nvicDisableVector(PIN_INT7_IRQn);&lt;BR /&gt;/* Setup GPIO6 Pin 15 */&lt;BR /&gt;palSetPadMode(6, 12, PAL_MODE_INPUT);&lt;BR /&gt;/* Set up GPIO6 Pin 15 as interrupt */&lt;BR /&gt;//LPC_SCU-&amp;gt;PINTSEL1 |= ((0x6 &amp;lt;&amp;lt; 5) | 0xc) &amp;lt;&amp;lt; 24;&lt;BR /&gt;LPC_SCU-&amp;gt;PINTSEL1 |= (6 &amp;lt;&amp;lt; 29) | (0xC &amp;lt;&amp;lt; 24);&lt;BR /&gt;LPC_GPIO_PIN_INT-&amp;gt;IST |= 0x80; // Clear interrupts&lt;BR /&gt;LPC_GPIO_PIN_INT-&amp;gt;ISEL &amp;amp;= ~0x80; // Edge sensitive&lt;BR /&gt;LPC_GPIO_PIN_INT-&amp;gt;SIENR |= 0x80; // Enable rising interrupts&lt;BR /&gt;LPC_GPIO_PIN_INT-&amp;gt;SIENF |= 0x80; // Enable falling interrupts&lt;BR /&gt;/* Enable interrupts */&lt;BR /&gt;nvicEnableVector(PIN_INT7_IRQn, CORTEX_PRIORITY_MASK(2));&lt;BR /&gt;}&lt;/STRONG&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556065#M15088</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556066#M15089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by starblue on Wed Oct 21 05:03:32 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;To me that looks mostly correct for PIN_INT7 on GPIO6[12]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(you have the wrong pin number in comments, and you should better use = instead of |= for set/clear registers).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you check the external connection to the pin and that the correct function is selected in the SCU, for example by reading GPIO6[12] directly?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556066#M15089</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556067#M15090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by sadfsdf on Wed Oct 21 06:03:15 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, you are right I am using GPIO6[12]..wrong comments...will edit them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is that it is working with PIN_INT1 for example, but is not working with PIN_INT7.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For PIN_INT1 code looks like that :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;void proximityInt_init(const DRV_EXTERNAL_INTERRUPT_CALLBACK newProximityInt1Callback)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;proximityInt1Callback = newProximityInt1Callback;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nvicDisableVector(PIN_INT1_IRQn);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Setup GPIO6 Pin 12 */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;palSetPadMode(6, 12, PAL_MODE_INPUT);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Set up GPIO6 Pin 12 as interrupt */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_SCU-&amp;gt;PINTSEL0 |= (6 &amp;lt;&amp;lt; 13) | (0xC &amp;lt;&amp;lt; 8);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;ISEL &amp;amp;= ~0x02; // Edge sensitive&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;SIENR |= 0x02; // Enable rising&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;SIENF |= 0x02; // Enable falling&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Enable interrupts */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nvicEnableVector(PIN_INT1_IRQn, CORTEX_PRIORITY_MASK(2));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556067#M15090</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556068#M15091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by starblue on Wed Oct 21 07:04:31 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;My code works for PIN_INT0 (the normal setting I use), PIN_INT4 and PIN_INT7.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could check if all your definitions are correct (i.e. the address of LPC_SCU-&amp;gt;PINTSEL1, interrupt numbers, the functions for enabling interrupts, ...).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556068#M15091</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556069#M15092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by sadfsdf on Wed Oct 21 07:49:55 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; already checked address of LPC_SCU-&amp;gt;PINTSEL1 it is 0x40086E04//like it suppose to be..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and all things that are configured i passed on the top...or i missed something?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556069#M15092</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556070#M15093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by sadfsdf on Thu Oct 22 05:54:53 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i changed 0x80 to (1 &amp;lt;&amp;lt; 7)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and using only = it works now...but only with (1 &amp;lt;&amp;lt; 7).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556070#M15093</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556071#M15094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by starblue on Thu Oct 22 06:43:11 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Strange.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The only difference is that 0x80 is an unsigned int and (1 &amp;lt;&amp;lt; 7) evaluates to a signed int, but the value should be the same. (You could also test (1U &amp;lt;&amp;lt; 7), which is unsigned.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you post your working code to see what you did exactly?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556071#M15094</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556072#M15095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by sadfsdf on Mon Oct 26 23:55:39 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;nvicDisableVector(PIN_INT1_IRQn);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Setup GPIO6 Pin 12*/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;palSetPadMode(6, 12, PAL_MODE_INPUT);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Set up GPIO6 Pin12 as interrupt */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_SCU-&amp;gt;PINTSEL1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |= (6 &amp;lt;&amp;lt; 29) | (0xC &amp;lt;&amp;lt; 24);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//LPC_GPIO_PIN_INT-&amp;gt;IST&amp;nbsp;&amp;nbsp; |= 1 &amp;lt;&amp;lt; 7; // Clear interrupts&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;ISEL&amp;nbsp; |= 0 &amp;lt;&amp;lt; 7; // Edge sensitive&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;SIENR |= 1 &amp;lt;&amp;lt; 7; // Enable rising&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT-&amp;gt;SIENF |= 1 &amp;lt;&amp;lt; 7; // Enable falling&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Enable interrupts */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nvicEnableVector(PIN_INT1_IRQn, CORTEX_PRIORITY_MASK(2));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That is my working code. The real issue was comment line with LPC_GPIO_PIN_INT-&amp;gt;IST or put 0 there. Sorry for disinfo. Now it works. Thank you , you responds were very helpfull.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556072#M15095</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556073#M15096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by starblue on Tue Oct 27 01:49:18 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;The meaning of IST changes depending on ISEL, so ISEL should be written first.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using |= for IST, SIENR and SIENF is wrong, use =.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my code for comparison:&lt;/SPAN&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
&amp;nbsp; LPC_GPIO_PIN_INT-&amp;gt;ISEL &amp;amp;= ~(1U &amp;lt;&amp;lt; 0);&amp;nbsp; /* Edge sensitive */
&amp;nbsp; LPC_GPIO_PIN_INT-&amp;gt;IST&amp;nbsp;&amp;nbsp; =&amp;nbsp; (1U &amp;lt;&amp;lt; 0);&amp;nbsp; /* Clear edge interrupts */
&amp;nbsp; LPC_GPIO_PIN_INT-&amp;gt;CIENR =&amp;nbsp; (1U &amp;lt;&amp;lt; 0);&amp;nbsp; /* Disable rising edge interrupt */
&amp;nbsp; LPC_GPIO_PIN_INT-&amp;gt;SIENF =&amp;nbsp; (1U &amp;lt;&amp;lt; 0);&amp;nbsp; /* Enable falling edge interrupt */
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556073#M15096</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: LPC43xx Interrupts with PINTSEL1 are not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556074#M15097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by sadfsdf on Tue Oct 27 08:01:31 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you...didn`t know that..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:39:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC43xx-Interrupts-with-PINTSEL1-are-not-working/m-p/556074#M15097</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:39:30Z</dc:date>
    </item>
  </channel>
</rss>

