<?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: The reading of the digital input on GPIO_SNVS_05 is not working in i.MX RT Crossover MCUs</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1816906#M29069</link>
    <description>&lt;P&gt;Please Enable the Software Input On at the pin configuration.&lt;BR /&gt;Additionally, make sure that the PinRead is outside the IRQ handler, it is suggested to keep them as short as possible.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Omar&lt;/P&gt;</description>
    <pubDate>Wed, 28 Feb 2024 00:11:02 GMT</pubDate>
    <dc:creator>Omar_Anguiano</dc:creator>
    <dc:date>2024-02-28T00:11:02Z</dc:date>
    <item>
      <title>The reading of the digital input on GPIO_SNVS_05 is not working</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1784489#M28363</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm using an RT1170 board with MCUXpresso, and I need to read a digital input pin that I have configured on GPIO_SNVS_05.&lt;/P&gt;&lt;P&gt;Here is my configuration:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sajithdevidas_0-1704723131549.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/257090i1D3874C6A0673B9B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sajithdevidas_0-1704723131549.png" alt="sajithdevidas_0-1704723131549.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm using interrupts to read the pins:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;EnableIRQ(GPIO13_Combined_0_31_IRQn);&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;And this is my ISR:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;P&gt;void DISCRETE_INPUT_ISR_GPIO13(void)&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;// Clearing all the interrupt flags&lt;BR /&gt;GPIO_PortClearInterruptFlags(GPIO_PORT_13, (1&amp;lt;&amp;lt;DIN_1_PIN) | (1&amp;lt;&amp;lt;DIN_2_PIN) |&lt;BR /&gt;(1&amp;lt;&amp;lt;DIN_3_PIN) | (1&amp;lt;&amp;lt;DIN_4_PIN) | (1&amp;lt;&amp;lt;DIN_5_PIN) |&lt;BR /&gt;(1&amp;lt;&amp;lt;DIN_6_PIN) | (1&amp;lt;&amp;lt;DIN_7_PIN) | (1&amp;lt;&amp;lt;DIN_8_PIN) |&lt;BR /&gt;(1&amp;lt;&amp;lt;DIN_9_PIN) | (1&amp;lt;&amp;lt;DIN_10_PIN));&lt;/P&gt;&lt;P&gt;// Read the GPIO states&lt;BR /&gt;DIN_1 = GPIO_PinRead(GPIO_PORT_13, DIN_1_PIN);&lt;BR /&gt;DIN_2 = GPIO_PinRead(GPIO_PORT_13, DIN_2_PIN);&lt;BR /&gt;DIN_3 = GPIO_PinRead(GPIO_PORT_13, DIN_3_PIN);&lt;BR /&gt;DIN_4 = GPIO_PinRead(GPIO_PORT_13, DIN_4_PIN);&lt;BR /&gt;DIN_5 = GPIO_PinRead(GPIO_PORT_13, DIN_5_PIN);&lt;BR /&gt;DIN_6 = GPIO_PinRead(GPIO_PORT_13, DIN_6_PIN);&lt;BR /&gt;DIN_7 = GPIO_PinRead(GPIO_PORT_13, DIN_7_PIN);&lt;BR /&gt;DIN_8 = GPIO_PinRead(GPIO_PORT_13, DIN_8_PIN);&lt;BR /&gt;DIN_9 = GPIO_PinRead(GPIO_PORT_13, DIN_9_PIN);&lt;BR /&gt;DIN_10 = GPIO_PinRead(GPIO_PORT_13, DIN_10_PIN);&lt;/P&gt;&lt;P&gt;SDK_ISR_EXIT_BARRIER;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, while I'm trying to read the pin using GPIO_PinRead(), it's showing the following error:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sajithdevidas_1-1704723270261.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/257091i39AA31A861D1FFCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sajithdevidas_1-1704723270261.png" alt="sajithdevidas_1-1704723270261.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the other digital inputs within the same program are being read correctly.&lt;/P&gt;&lt;P&gt;Could anyone suggest what the issue might be?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2024 14:16:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1784489#M28363</guid>
      <dc:creator>sajithdevidas</dc:creator>
      <dc:date>2024-01-08T14:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: The reading of the digital input on GPIO_SNVS_05 is not working</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1795686#M28636</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;What is the specific part number of your device? There are issues using those pads when the specific part supports tamper. The result obtained suggests that the tamper causes this as it disconnects the debug session when triggered.&lt;/P&gt;
&lt;P&gt;More details about this tamper are on&amp;nbsp;&lt;A href="https://community.nxp.com/t5/i-MX-RT/How-to-config-GPIO-to-wake-pin-in-RT1170/m-p/1255625" target="_blank"&gt;Solved: How to config GPIO to wake pin in RT1170 - NXP Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Omar&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2024 00:04:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1795686#M28636</guid>
      <dc:creator>Omar_Anguiano</dc:creator>
      <dc:date>2024-01-26T00:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: The reading of the digital input on GPIO_SNVS_05 is not working</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1796905#M28681</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The part number is RT1176AVM8A&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 14:15:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1796905#M28681</guid>
      <dc:creator>sajithdevidas</dc:creator>
      <dc:date>2024-01-29T14:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: The reading of the digital input on GPIO_SNVS_05 is not working</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1816906#M29069</link>
      <description>&lt;P&gt;Please Enable the Software Input On at the pin configuration.&lt;BR /&gt;Additionally, make sure that the PinRead is outside the IRQ handler, it is suggested to keep them as short as possible.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Omar&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 00:11:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1816906#M29069</guid>
      <dc:creator>Omar_Anguiano</dc:creator>
      <dc:date>2024-02-28T00:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: The reading of the digital input on GPIO_SNVS_05 is not working</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1818399#M29098</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Yeah, I did the same, but the issue persists. In debug mode, when I'm giving input to that pin, the error scenario occurs and the debug mode automatically closes. However, other than in debug mode, the functionality works fine.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 06:25:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/The-reading-of-the-digital-input-on-GPIO-SNVS-05-is-not-working/m-p/1818399#M29098</guid>
      <dc:creator>sajithdevidas</dc:creator>
      <dc:date>2024-02-29T06:25:46Z</dc:date>
    </item>
  </channel>
</rss>

