<?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: LPC11UXX External active level interrupt in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2139500#M58541</link>
    <description>&lt;P&gt;Hi Alice_Yang:&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;BR /&gt;The Level interrupt works well (High-&amp;gt;Low and Low -&amp;gt; High both trigger an interrupt ).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andy2022_0-1753284367967.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/349138iD6FC9A3B900EC3A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andy2022_0-1753284367967.png" alt="Andy2022_0-1753284367967.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, I only set High-Level interrupt or Low-Level interrupt, the corresponding operation can't trigger an interrupt.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andy2022_3-1753284608790.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/349142iA2410F4C6B5D0109/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andy2022_3-1753284608790.png" alt="Andy2022_3-1753284608790.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andy2022_2-1753284512662.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/349140iEAFA68BF411FA73E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andy2022_2-1753284512662.png" alt="Andy2022_2-1753284512662.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks very much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Andy2022&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jul 2025 15:35:37 GMT</pubDate>
    <dc:creator>Andy2022</dc:creator>
    <dc:date>2025-07-23T15:35:37Z</dc:date>
    <item>
      <title>LPC11UXX External active level interrupt</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2138868#M58528</link>
      <description>&lt;P&gt;Dears,&lt;/P&gt;&lt;P&gt;I encountered a issue about active-level interrupt when I use #LPC11U35BFD# mcu. I use the command to control Ex-Interrupt mode and trigger&amp;nbsp;&lt;/P&gt;&lt;P&gt;The similar init code, the edge(rasing or falling) interrupt and level interrupt work well, but the active-level(High or Low) interrupt doesn't work.&lt;/P&gt;&lt;P&gt;I use the command to switch the interrupt mode(Rasing, Falling, High-Level, Low-Level).&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NVIC_DisableIRQ&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FLEX_INT0_IRQn&lt;/SPAN&gt;&lt;SPAN&gt;); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;ISEL&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp;|= (&lt;/SPAN&gt;&lt;SPAN&gt;1UL&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;); //Level sentisive&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;CIENR&lt;/SPAN&gt;&lt;SPAN&gt; |= &amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;1UL&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;);&amp;nbsp; //close level interrupt&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//Those two configurations only execute one.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;IENF&lt;/SPAN&gt;&lt;SPAN&gt; |= &amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;1UL&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//enable High Level Interrupt&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;IENF&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;= &amp;nbsp;~(&lt;/SPAN&gt;&lt;SPAN&gt;1UL&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;);&amp;nbsp; &amp;nbsp;//enable Low Level Interrupt&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPC_IOCON&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;PIO0_2&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;|= &lt;/SPAN&gt;&lt;SPAN&gt;0x10&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;RISE&lt;/SPAN&gt;&lt;SPAN&gt; |= (&lt;/SPAN&gt;&lt;SPAN&gt;1UL&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;FALL&lt;/SPAN&gt;&lt;SPAN&gt; |= (&lt;/SPAN&gt;&lt;SPAN&gt;1UL&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPC_GPIO_PIN_INT&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;IST&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp;|= (&lt;/SPAN&gt;&lt;SPAN&gt;1UL&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NVIC_EnableIRQ&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FLEX_INT0_IRQn&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;If&amp;nbsp; you have any suggestions, please tell me, thanks.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 03:04:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2138868#M58528</guid>
      <dc:creator>Andy2022</dc:creator>
      <dc:date>2025-07-23T03:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: LPC11UXX External active level interrupt</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2139211#M58539</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/252978"&gt;@Andy2022&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your question.&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;level interrupt work well, but the active-level(High or Low) interrupt doesn't work.&lt;/SPAN&gt;"&lt;/P&gt;
&lt;P&gt;-&amp;gt;&amp;gt; Sorry so does level interrupt work or not?&lt;/P&gt;
&lt;P&gt;And if it doesn't work, I recommend you refer to the pinint demo under LPCopen, firstly clear the status , then&amp;nbsp; configure interrupt.&lt;/P&gt;
&lt;DIV style="background-color: #ffffff; padding: 0px 0px 0px 2px;"&gt;
&lt;DIV style="color: #000000; background-color: #ffffff; font-family: 'Courier New'; font-size: 10pt; white-space: pre;"&gt;
&lt;BLOCKQUOTE&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;/* Configure channel interrupt as edge sensitive and falling edge interrupt */&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt; Chip_PININT_ClearIntStatus(LPC_PININT, PININTCH(GPIO_PININT_INDEX));&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt; Chip_PININT_SetPinModeEdge(LPC_PININT, PININTCH(GPIO_PININT_INDEX));&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;Chip_PININT_EnableIntLow&lt;/SPAN&gt;&lt;SPAN&gt;(LPC_PININT, PININTCH(GPIO_PININT_INDEX));&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P style="margin: 0;"&gt;Thank you.&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;BR&lt;/P&gt;
&lt;P style="margin: 0;"&gt;ALice&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Jul 2025 09:05:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2139211#M58539</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2025-07-23T09:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: LPC11UXX External active level interrupt</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2139500#M58541</link>
      <description>&lt;P&gt;Hi Alice_Yang:&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;BR /&gt;The Level interrupt works well (High-&amp;gt;Low and Low -&amp;gt; High both trigger an interrupt ).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andy2022_0-1753284367967.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/349138iD6FC9A3B900EC3A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andy2022_0-1753284367967.png" alt="Andy2022_0-1753284367967.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, I only set High-Level interrupt or Low-Level interrupt, the corresponding operation can't trigger an interrupt.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andy2022_3-1753284608790.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/349142iA2410F4C6B5D0109/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andy2022_3-1753284608790.png" alt="Andy2022_3-1753284608790.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andy2022_2-1753284512662.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/349140iEAFA68BF411FA73E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andy2022_2-1753284512662.png" alt="Andy2022_2-1753284512662.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks very much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Andy2022&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 15:35:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2139500#M58541</guid>
      <dc:creator>Andy2022</dc:creator>
      <dc:date>2025-07-23T15:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: LPC11UXX External active level interrupt</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2140099#M58543</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/252978"&gt;@Andy2022&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How about using the three APIs above? &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also, please measure the input signal to confirm that it is high when a high-active interrupt is set.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alice&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 10:52:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2140099#M58543</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2025-07-24T10:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: LPC11UXX External active level interrupt</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2140155#M58544</link>
      <description>Hi Alice:&lt;BR /&gt;Sorry, I haven't used three APIs yet. Because I used Keil.LPC1100_DFP.1.4.1.pack and keil environment(No Keil IDE) to compile code, so I couldn't use three APIs directly. Could you provide those APIs' source code?&lt;BR /&gt;And, I observed the Level through Logical analyzer, so I was sure that it is high when a high-active interrupt is set.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Andy</description>
      <pubDate>Thu, 24 Jul 2025 12:21:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2140155#M58544</guid>
      <dc:creator>Andy2022</dc:creator>
      <dc:date>2025-07-24T12:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: LPC11UXX External active level interrupt</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2144023#M58585</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/252978"&gt;@Andy2022&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please download LPCopen, where you can find the three APIs.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://www.nxp.com/design/design-center/software/software-library/lpcopen-software-development-platform-lpc11xx:LPCOPEN-SOFTWARE-FOR-LPC11XX" target="_blank"&gt;https://www.nxp.com/design/design-center/software/software-library/lpcopen-software-development-platform-lpc11xx:LPCOPEN-SOFTWARE-FOR-LPC11XX&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Additionally, there is a GPIO interrupt demo available for your reference.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alice&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 02:08:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC11UXX-External-active-level-interrupt/m-p/2144023#M58585</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2025-07-31T02:08:00Z</dc:date>
    </item>
  </channel>
</rss>

