<?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>LPC MicrocontrollersのトピックRe: Issue in configuring the GPIOs in LPC1778</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935044#M37277</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;hello, Sabina,&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;Thank you for your help. up till now, the LCD is displaying the desired output. I am using the Displaytech INT028ATFT LCD module.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;now I hope the pull-up/pull-down issue has been sorted but the problems happening are&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;1.when I am connecting the LCD module to the LPC controller after approx five to ten minutes the LPC controller stops operating and sometimes just at the moment of connecting the LCD.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;2. with the LCD still connected it displays the same picture, but I am unable to restart(reset) the LPC controller or reprogram it.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;3. when I disconnect the module(manually disconnecting the connector) the controller restarts and works normally.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&amp;nbsp;I am posting an image of the schematic for your reference.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;Best Regards,&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;sakib khan&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="105-113300-03-4.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/91271i90E4B45A0296B6FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="105-113300-03-4.jpg" alt="105-113300-03-4.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Oct 2019 11:30:19 GMT</pubDate>
    <dc:creator>sakib</dc:creator>
    <dc:date>2019-10-11T11:30:19Z</dc:date>
    <item>
      <title>Issue in configuring the GPIOs in LPC1778</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935040#M37273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having difficulties in initializing the GPIO into the Input/ Output mode. I'm using LPC1778FBD144, wherein I'm trying to use some GPIOs for the specific&amp;nbsp;task that required reading as well as writing on the same Pins.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Issues:&lt;BR /&gt;1. After setting GPIOs into the Read-Mode, I'm continuously getting 'High State' on all the GPIOs regardless of the external voltage source (0v and 3.3v) supplied on it.&amp;nbsp;&lt;BR /&gt;2. When I'm setting&lt;SPAN&gt;&amp;nbsp;GPIOs into the Write-Mode, I'm able to read the GPIO's status successfully (although which is not a correct method).&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Luckily, after setting GPIOs into the Write-Mode, I'm able to set the Pin's status successfully. Moreover, I'm attaching my code block, if anyone can pin-point the issue or guide me in any way will be much appreciated.&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/******TEST CODE BLOCK FOR GPIO READ*******/&lt;BR /&gt;// Init GPIO P4.9,&amp;nbsp;P4.10,&amp;nbsp;P4.11,&amp;nbsp;P4.12 into&amp;nbsp;Normal GPIOs-Mode&lt;BR /&gt; PINSEL_ConfigPin (PORT_4 , PIN_9&amp;nbsp; &amp;nbsp;, PIN_FUNC0);&amp;nbsp;&lt;BR /&gt; PINSEL_ConfigPin (PORT_4 , PIN_10 , PIN_FUNC0);&amp;nbsp;&lt;BR /&gt; PINSEL_ConfigPin (PORT_4 , PIN_11 , PIN_FUNC0);&amp;nbsp;&lt;BR /&gt; PINSEL_ConfigPin (PORT_4 , PIN_12 , PIN_FUNC0);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/*** This method works, but with this method, I might get the loopback data of whatever I try to write on these Pins when.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Hence, I will not able to differentiate&amp;nbsp;whether the data is coming from the out or I'm setting myself. ****/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;// Define P4.9,&amp;nbsp;P4.10,&amp;nbsp;P4.11,&amp;nbsp;P4.12 into Write-Mode&lt;BR /&gt; GPIO_SetDir (PORT_4 , (1&amp;lt;&amp;lt;(PIN_9 ))&amp;nbsp; ,&amp;nbsp;(uint8_t)0x01);&lt;BR /&gt; GPIO_SetDir (PORT_4 ,&amp;nbsp;(1&amp;lt;&amp;lt;(&lt;SPAN&gt;PIN_10))&amp;nbsp;&lt;/SPAN&gt;, (uint8_t)0x01);&amp;nbsp;&lt;BR /&gt; GPIO_SetDir (PORT_4 , &lt;SPAN&gt;(1&amp;lt;&amp;lt;(&lt;/SPAN&gt;&lt;SPAN&gt;PIN_11))&amp;nbsp;&lt;/SPAN&gt;, (uint8_t)0x01);&amp;nbsp;&lt;BR /&gt; GPIO_SetDir (PORT_4 , &lt;SPAN&gt;(1&amp;lt;&amp;lt;(&lt;/SPAN&gt;&lt;SPAN&gt;PIN_12))&amp;nbsp;&lt;/SPAN&gt;, (uint8_t)0x01);&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/***** with this defination we're not able to read the Data at the pins!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;// Define P4.9,&amp;nbsp;P4.10,&amp;nbsp;P4.11,&amp;nbsp;P4.12 into Read-Mode&lt;BR /&gt;&lt;SPAN&gt;GPIO_SetDir (PORT_4 , (1&amp;lt;&amp;lt;(PIN_9 ))&amp;nbsp; ,&amp;nbsp;(uint8_t)0x00);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GPIO_SetDir (PORT_4 ,&amp;nbsp;(1&amp;lt;&amp;lt;(&lt;/SPAN&gt;&lt;SPAN&gt;PIN_10))&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;, (uint8_t)0x00);&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GPIO_SetDir (PORT_4 ,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;(1&amp;lt;&amp;lt;(&lt;/SPAN&gt;&lt;SPAN&gt;PIN_11))&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;, (uint8_t)0x00);&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GPIO_SetDir (PORT_4 ,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;(1&amp;lt;&amp;lt;(&lt;/SPAN&gt;&lt;SPAN&gt;PIN_12))&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;, (uint8_t)0x00);&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;*****/&lt;BR /&gt; while(1)&lt;BR /&gt; {&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Delay_ms(1000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;uint32_t uiGPIO_Value = GPIO_ReadValue(PORT_4); &lt;BR /&gt; uint8_t ucRetData&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; = uiGPIO_Value &amp;amp; (uint8_t)0xFF ;&lt;BR /&gt;printf("DATA=%x\n\r",ucRetData&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;);&amp;nbsp;&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2019 12:43:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935040#M37273</guid>
      <dc:creator>sakib</dc:creator>
      <dc:date>2019-10-01T12:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in configuring the GPIOs in LPC1778</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935041#M37274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I as far the code snippet that you are showing I dont see anything evidently wrong. I am however a bit confused as to what you mean by&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;specific&amp;nbsp;task that required reading as well as writing on the same Pins&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;For this I want to clarify you can only do one a time with the same pin. You can either write on the pin or read from the pin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;STRONG&gt;GPIO_SetPortDIR&lt;/STRONG&gt; instead, let me know if the results are different.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Sabina&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Oct 2019 19:39:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935041#M37274</guid>
      <dc:creator>Sabina_Bruce</dc:creator>
      <dc:date>2019-10-03T19:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in configuring the GPIOs in LPC1778</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935042#M37275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;A _jive_internal="true" data-id="314059" data-objecttype="3" data-orig-content="Sabina Bruce" data-type="person" href="https://community.nxp.com/people/sabinabruce"&gt;Sabina Bruce&lt;/A&gt;‌, Thanks for your reply!&amp;nbsp;&lt;/P&gt;&lt;P&gt;The specific task that I'm trying to achieve here is I'm trying to interface the Graphical LCD&amp;nbsp;RA8872 (parallel interface with controller).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.displaytech-us.com/sites/default/files/driver-ic-data-sheet/RAiO-RA8872.pdf" title="https://www.displaytech-us.com/sites/default/files/driver-ic-data-sheet/RAiO-RA8872.pdf"&gt;https://www.displaytech-us.com/sites/default/files/driver-ic-data-sheet/RAiO-RA8872.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And yes, I'm aware that I can't use the GPIO-Read&amp;nbsp;and GPIO-Write at the same time. Therefore, I'm always changing the definition&amp;nbsp;of these Pins (Re-Init with required direction) before Writing or Reading anything on these GPIOs.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover, I can't use the&amp;nbsp;GPIO_SetPortDIR, because&amp;nbsp;there are some control lines are on&amp;nbsp;the same port, which has to be in the GPIO-Write Mode.&lt;/P&gt;&lt;P&gt;The complete definition of the Pins are as follow:&lt;BR /&gt;Control lines: CS, RS, RD, WR (Fixed &lt;SPAN&gt;GPIO-Write&lt;/SPAN&gt;). Data Lines: DB0 toDB7 (&lt;SPAN&gt;GPIO-Read/ GPIO-Write&lt;/SPAN&gt;).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Somehow, I've made the code working as per the requirement by add "&lt;SPAN&gt;PINSEL_SetPinMode&lt;/SPAN&gt;".&lt;/P&gt;&lt;P&gt;/******after addition of these definitions, the GPIOs are switching into GPIO-Write and GPIO-Read mode easily.&amp;nbsp;&lt;/P&gt;&lt;P&gt;although, I'm not able to understand why I specifically needs to defined these Pins into the PullDown mode*****/&lt;BR /&gt;PINSEL_SetPinMode(PORT_4 , PIN_9 ,&amp;nbsp; PINSEL_BASICMODE_PULLDOWN );&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PINSEL_SetPinMode(PORT_4 , PIN_10 ,&amp;nbsp; PINSEL_BASICMODE_PULLDOWN);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PINSEL_SetPinMode(PORT_4 , PIN_11 ,&amp;nbsp; PINSEL_BASICMODE_PULLDOWN);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PINSEL_SetPinMode(PORT_4 , PIN_12 ,&amp;nbsp; PINSEL_BASICMODE_PULLDOWN);&lt;BR /&gt;&lt;BR /&gt;Till now,&amp;nbsp;I'm still not able to make the LCD work, so, If you've any kind of reference or link where I can get some tips or any information, please share with me.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Oct 2019 07:17:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935042#M37275</guid>
      <dc:creator>sakib</dc:creator>
      <dc:date>2019-10-04T07:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in configuring the GPIOs in LPC1778</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935043#M37276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you are doing well. I'm glad it is working now. Generally the pin's internal state can be pull up or pull down or floating as well. So it is strange that it is only working as pull down. Are you basing your application on an example? If so, what version are you using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as the LCD screen not working, yet, I'd like to know your connections from the mcu to the lcd. If you have schematic of your connections that would be fine. If not, then just describe what pins you have connected to cs, rs, rd, wr..etc. This way we can first rule out any hardware issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sabina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Oct 2019 13:56:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935043#M37276</guid>
      <dc:creator>Sabina_Bruce</dc:creator>
      <dc:date>2019-10-07T13:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in configuring the GPIOs in LPC1778</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935044#M37277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;hello, Sabina,&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;Thank you for your help. up till now, the LCD is displaying the desired output. I am using the Displaytech INT028ATFT LCD module.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;now I hope the pull-up/pull-down issue has been sorted but the problems happening are&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;1.when I am connecting the LCD module to the LPC controller after approx five to ten minutes the LPC controller stops operating and sometimes just at the moment of connecting the LCD.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;2. with the LCD still connected it displays the same picture, but I am unable to restart(reset) the LPC controller or reprogram it.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;3. when I disconnect the module(manually disconnecting the connector) the controller restarts and works normally.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&amp;nbsp;I am posting an image of the schematic for your reference.&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;Best Regards,&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;sakib khan&lt;/DIV&gt;&lt;DIV style="color: #222222; background-color: #ffffff; font-size: small;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="105-113300-03-4.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/91271i90E4B45A0296B6FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="105-113300-03-4.jpg" alt="105-113300-03-4.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2019 11:30:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935044#M37277</guid>
      <dc:creator>sakib</dc:creator>
      <dc:date>2019-10-11T11:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in configuring the GPIOs in LPC1778</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935045#M37278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sakib,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This sounds like it could be a power distribution issue. I would recommend to mesure the supply currents and voltage as stated in the data sheet for both the &lt;A href="https://www.nxp.com/docs/en/data-sheet/LPC178X_7X.pdf"&gt;LPC1778 &lt;/A&gt;and your LCD module.&lt;/P&gt;&lt;P&gt;Here make sure that you are not getting a sudden unexpected drop in the votlage or current when you connect the LCD. From your schematic I see that all power lines ar connected to the same 3.3V. If you do see an anomily, please try to&amp;nbsp; separe the power sources and measure these points again.&lt;/P&gt;&lt;P&gt;Let me know your results,&lt;/P&gt;&lt;P&gt;Sabina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2019 14:10:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-configuring-the-GPIOs-in-LPC1778/m-p/935045#M37278</guid>
      <dc:creator>Sabina_Bruce</dc:creator>
      <dc:date>2019-10-12T14:10:08Z</dc:date>
    </item>
  </channel>
</rss>

