<?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 LP4370 Fast GPIO in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816748#M32695</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;LP4370 Fast GPIO&lt;/DIV&gt;&lt;DIV&gt;Using the code (pasted below) I see the clock speed is set as 204000000 (204MHz) and I get ~50MHz frequency using Port/Pin 3_3.&lt;/DIV&gt;&lt;DIV&gt;This has very few instructions but I will need to add more to bit-bang out a changeable binary pattern.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Is there a faster way to set/clear GPIO?&lt;BR /&gt;&amp;nbsp; - I read something about Fast GPIO.&amp;nbsp; How would one go about setting that?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Do I need to go back to assembler&lt;/DIV&gt;&lt;DIV&gt;I've hunted around in here but while I see glimpses of a solution I've not found the answer:&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;DIV&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;/*******************************************************************/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;STATIC INLINE void Chip_GPIO_SetPinOutHigh(LPC_GPIO_T *pGPIO, uint8_t port, uint8_t pin)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;pGPIO-&amp;gt;SET[port] = (1 &amp;lt;&amp;lt; pin);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;STATIC INLINE void Chip_GPIO_SetPinOutLow(LPC_GPIO_T *pGPIO, uint8_t port, uint8_t pin)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;pGPIO-&amp;gt;CLR[port] = (1 &amp;lt;&amp;lt; pin);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;/*******************************************************************/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;int main(void)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;SystemCoreClockUpdate();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;/* Initialise GPIO */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;Chip_GPIO_Init(LPC_GPIO_PORT);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;/* Set pin output */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;Chip_GPIO_SetPinDIROutput(LPC_GPIO_PORT, 3, 3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;/* Set pin low */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;Chip_GPIO_SetPinOutLow(LPC_GPIO_PORT, 3, 3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Enter an infinite loop&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp; /* Set pin high */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_GPIO_SetPinOutHigh(LPC_GPIO_PORT, 3, 3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp; /* Set pin low */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_GPIO_SetPinOutLow(LPC_GPIO_PORT, 3, 3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;/*******************************************************************/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jul 2018 08:54:21 GMT</pubDate>
    <dc:creator>simon_prentice</dc:creator>
    <dc:date>2018-07-16T08:54:21Z</dc:date>
    <item>
      <title>LP4370 Fast GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816748#M32695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;LP4370 Fast GPIO&lt;/DIV&gt;&lt;DIV&gt;Using the code (pasted below) I see the clock speed is set as 204000000 (204MHz) and I get ~50MHz frequency using Port/Pin 3_3.&lt;/DIV&gt;&lt;DIV&gt;This has very few instructions but I will need to add more to bit-bang out a changeable binary pattern.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Is there a faster way to set/clear GPIO?&lt;BR /&gt;&amp;nbsp; - I read something about Fast GPIO.&amp;nbsp; How would one go about setting that?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Do I need to go back to assembler&lt;/DIV&gt;&lt;DIV&gt;I've hunted around in here but while I see glimpses of a solution I've not found the answer:&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;DIV&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;/*******************************************************************/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;STATIC INLINE void Chip_GPIO_SetPinOutHigh(LPC_GPIO_T *pGPIO, uint8_t port, uint8_t pin)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;pGPIO-&amp;gt;SET[port] = (1 &amp;lt;&amp;lt; pin);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;STATIC INLINE void Chip_GPIO_SetPinOutLow(LPC_GPIO_T *pGPIO, uint8_t port, uint8_t pin)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;pGPIO-&amp;gt;CLR[port] = (1 &amp;lt;&amp;lt; pin);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;/*******************************************************************/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;int main(void)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;SystemCoreClockUpdate();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;/* Initialise GPIO */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;Chip_GPIO_Init(LPC_GPIO_PORT);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;/* Set pin output */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;Chip_GPIO_SetPinDIROutput(LPC_GPIO_PORT, 3, 3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;/* Set pin low */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;Chip_GPIO_SetPinOutLow(LPC_GPIO_PORT, 3, 3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Enter an infinite loop&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp; /* Set pin high */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_GPIO_SetPinOutHigh(LPC_GPIO_PORT, 3, 3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp; /* Set pin low */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_GPIO_SetPinOutLow(LPC_GPIO_PORT, 3, 3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: andale mono,monospace; font-size: 13px;"&gt;/*******************************************************************/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2018 08:54:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816748#M32695</guid>
      <dc:creator>simon_prentice</dc:creator>
      <dc:date>2018-07-16T08:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: LP4370 Fast GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816749#M32696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp; - How do you configure high-speed IO pins as detailed in the data sheet?&lt;/P&gt;&lt;P&gt;&amp;nbsp; - Does this apply only to certain pins?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="fastio_1.PNG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/65573i18DAA32E0BDA755F/image-size/large?v=v2&amp;amp;px=999" role="button" title="fastio_1.PNG" alt="fastio_1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2018 10:12:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816749#M32696</guid>
      <dc:creator>simon_prentice</dc:creator>
      <dc:date>2018-07-16T10:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: LP4370 Fast GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816750#M32697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&amp;nbsp;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="321878" data-username="simon.prentice@sagentia.com" href="https://community.nxp.com/people/simon.prentice@sagentia.com"&gt;Simon Prentice&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer the following community post:&amp;nbsp;&lt;A ___default_attr="420673" _jive_internal="true" data-orig-content="The fastest speed of GPIO" href="https://community.nxp.com/message/762575" jivemacro="thread" title="The fastest speed of GPIO"&gt;The fastest speed of GPIO&lt;/A&gt;&amp;nbsp;in the last response of that community post there's the code on how to reach&amp;nbsp;rates up to 102 MHz, while running at&amp;nbsp;204MHz. The community post refers to the&amp;nbsp;LPC4357&amp;nbsp;, however this LPC and the LPC4370 are from the same family, so you can use this exact same solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;Victor.&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2018 17:30:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816750#M32697</guid>
      <dc:creator>victorjimenez</dc:creator>
      <dc:date>2018-07-17T17:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: LP4370 Fast GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816751#M32698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Victor.&amp;nbsp; Thanks.&amp;nbsp; That worked !!&amp;nbsp; Working code for GPIO3_4 (pin on J9 on LPC-Link2).&lt;/P&gt;&lt;P&gt;It makes more sense now than it did a week ago.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One thing, I had to change the example from FUNC_4 to FUNC_0.&lt;/P&gt;&lt;P&gt;I haven't found a reference to what this setting does.&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;DIV&gt;&amp;nbsp;//P6_5 = GPIO3[4]&lt;BR /&gt;&amp;nbsp;Chip_SCU_PinMux(0x6, 5, MD_EHS, FUNC4);&lt;BR /&gt;&amp;nbsp;Chip_SCU_PinMuxSet(0x6, 5, (SCU_MODE_INACT | SCU_MODE_HIGHSPEEDSLEW_EN | SCU_MODE_FUNC0));&lt;BR /&gt;&amp;nbsp;Chip_GPIO_SetPinDIROutput(LPC_GPIO_PORT, 3, 4);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;LPC_GPIO_PORT-&amp;gt;DIR[3] |= 1&amp;lt;&amp;lt;4;&lt;BR /&gt;&amp;nbsp;gpset = &amp;amp;LPC_GPIO_PORT-&amp;gt;SET[3];&lt;BR /&gt;&amp;nbsp;gpclr = &amp;amp;LPC_GPIO_PORT-&amp;gt;CLR[3];&lt;BR /&gt;&amp;nbsp;gpmask = 1&amp;lt;&amp;lt;4;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;while (1)&lt;BR /&gt;&amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;*gpset = gpmask;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;*gpclr = gpmask;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;...&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 14:37:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816751#M32698</guid>
      <dc:creator>simon_prentice</dc:creator>
      <dc:date>2018-07-18T14:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: LP4370 Fast GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816752#M32699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;Simon Prentice,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reference the user manual&amp;nbsp;&lt;A class="link-titled" href="https://www.nxp.com/docs/en/user-guide/UM10503.pdf" title="https://www.nxp.com/docs/en/user-guide/UM10503.pdf"&gt;https://www.nxp.com/docs/en/user-guide/UM10503.pdf&lt;/A&gt;&amp;nbsp; chapter 16: Pin Configuration.&lt;/P&gt;&lt;P&gt;In the example of the community post that I mentioned they used PD_10 with Function 4, in chapter 16 of the user manual you will find the following information.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/65902i633154202CE9B6E3/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So, if you want to use pin PD_10 as GPIO you need to select the Function 4. You are using the pin P3_4, in the next image you can see that if you want to use this pin as GPIO you need to select the function 0.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_4.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/65903iA54FA78160A624F3/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_4.png" alt="pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Therefore, you had to make this change if you want to use this pin. Each pin has different functions so it's important to keep this in mind.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;Victor.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 14:42:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816752#M32699</guid>
      <dc:creator>victorjimenez</dc:creator>
      <dc:date>2018-07-19T14:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: LP4370 Fast GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816753#M32700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow.&lt;/P&gt;&lt;P&gt;So blindingly obvious ... now.&lt;/P&gt;&lt;P&gt;Thank you !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 15:12:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LP4370-Fast-GPIO/m-p/816753#M32700</guid>
      <dc:creator>simon_prentice</dc:creator>
      <dc:date>2018-07-19T15:12:52Z</dc:date>
    </item>
  </channel>
</rss>

