<?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のトピックLPC1114 0.0 and 0.4 as GPIO</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595099#M22752</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MDimonte on Thu Apr 09 17:30:44 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;I'm fairly new to microcontrollers, but I've been playing around with an LPC1114 and &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.microbuilder.eu%2FProjects%2FLPC1114ReferenceDesign%2FCodeBaseDocumentation.aspx%23pmuInit" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.microbuilder.eu/Projects/LPC1114ReferenceDesign/CodeBaseDocumentation.aspx#pmuInit&lt;/A&gt;&lt;SPAN&gt; for my code base.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm having some issues setting 0.0 and 0.4 as high outputs. My code is as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
#include "core/gpio/gpio.h"
int main(void) 
{ 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioInit(); 
&amp;nbsp;&amp;nbsp;&amp;nbsp; IOCON_PIO0_4=IOCON_PIO0_4_FUNC_GPIO; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; IOCON_nRESET_PIO0_0=IOCON_nRESET_PIO0_0_FUNC_GPIO; 
 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioSetDir(0,0,gpioDirection_Output); 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioSetDir(0,4,gpioDirection_Output); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while (1) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioSetValue(0,0,1); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioSetValue(0,4,1); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } 
} &lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can actually only get about half of the pins to work when I set them as outputs this way, however, these are the only two that are needed for my program. Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 19:22:44 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T19:22:44Z</dc:date>
    <item>
      <title>LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595099#M22752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MDimonte on Thu Apr 09 17:30:44 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;I'm fairly new to microcontrollers, but I've been playing around with an LPC1114 and &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.microbuilder.eu%2FProjects%2FLPC1114ReferenceDesign%2FCodeBaseDocumentation.aspx%23pmuInit" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.microbuilder.eu/Projects/LPC1114ReferenceDesign/CodeBaseDocumentation.aspx#pmuInit&lt;/A&gt;&lt;SPAN&gt; for my code base.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm having some issues setting 0.0 and 0.4 as high outputs. My code is as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
#include "core/gpio/gpio.h"
int main(void) 
{ 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioInit(); 
&amp;nbsp;&amp;nbsp;&amp;nbsp; IOCON_PIO0_4=IOCON_PIO0_4_FUNC_GPIO; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; IOCON_nRESET_PIO0_0=IOCON_nRESET_PIO0_0_FUNC_GPIO; 
 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioSetDir(0,0,gpioDirection_Output); 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioSetDir(0,4,gpioDirection_Output); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while (1) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioSetValue(0,0,1); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gpioSetValue(0,4,1); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } 
} &lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can actually only get about half of the pins to work when I set them as outputs this way, however, these are the only two that are needed for my program. Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595099#M22752</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595100#M22753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Thu Apr 09 17:35:51 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: MDimonte&lt;/STRONG&gt;&lt;BR /&gt;Any ideas?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO0_4&amp;nbsp; is an open-drain pin&amp;nbsp; ;-) &lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595100#M22753</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595101#M22754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MDimonte on Thu Apr 09 17:45:20 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;So it's not possible to set it as output? What about 0.0, is there something similar going on with that?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595101#M22754</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595102#M22755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Thu Apr 09 17:50:20 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: MDimonte&lt;/STRONG&gt;&lt;BR /&gt;So it's not possible to set it as output?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's open-drain. Of course you can use it as output if you add a pull-up&amp;nbsp;&amp;nbsp; :) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: MDimonte&lt;/STRONG&gt;&lt;BR /&gt;So it's not possible to set it as output?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO0.4 and PIO0.5 are the only open-drain pins (for I2C)...&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595102#M22755</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595103#M22756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MDimonte on Thu Apr 09 18:03:27 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Darn, thanks for the info. I just tested and I cannot get outputs from 0.0, 0.4, 0.5, 0.10, 0.11, and 1.0-1.3. I understand why 0.4/0.5 do not work but what about the rest?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595103#M22756</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595104#M22757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Thu Apr 09 18:21:33 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;UM10398 is describing Pin functions in Chapter 7&amp;nbsp; :O &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to use this pins as output, switch them to GPIO before&amp;nbsp; ;-) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure which hardware you are using, but a few pins are often using different functions (and are connected for this purpose)...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO0.0 is usually Reset...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO0.10 is usually SWCLK (for SWD Debugger)...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO0.11 pin functions 0 (default after Reset) is not GPIO....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO1.0 pin functions 0 (default after Reset) is not GPIO...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO1.1 pin functions 0 (default after Reset) is not GPIO...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO1.2 pin functions 0 (default after Reset) is not GPIO...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO1.3 is usually SWDIO (for SWD Debugger)...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So it's a good idea to use the debugger to check this IOCON register settings after reading UM10398&amp;nbsp; :) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595104#M22757</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595105#M22758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MDimonte on Thu Apr 09 18:36:44 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Awesome, thanks! One last question, shouldn't&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;IOCON_nRESET_PIO0_0=IOCON_nRESET_PIO0_0_FUNC_GPIO; &lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;set PIO0_0 into GPIO mode or am I doing something wrong here?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595105#M22758</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595106#M22759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Thu Apr 09 18:43:05 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: MDimonte&lt;/STRONG&gt;&lt;BR /&gt;...shouldn't&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;IOCON_nRESET_PIO0_0=IOCON_nRESET_PIO0_0_FUNC_GPIO; &lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;set PIO0_0 into GPIO mode or am I doing something wrong here?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not using this library, so I can't confirm that...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Debugging IOCON_PIO0_0 register should show you which function is actually selected&amp;nbsp; &lt;SPAN class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;&lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595106#M22759</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595107#M22760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MDimonte on Thu Apr 09 18:57:20 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Those commands are from lpc111x.h is that not standard? Could you please tell me how you do set it in whatever your library is and that would probably help me figure out what I'm doing wrong. Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595107#M22760</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1114 0.0 and 0.4 as GPIO</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595108#M22761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Thu Apr 09 19:10:56 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a NXP forum, so the usual toolchain is LPCXpresso &amp;amp; LPCOpen&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.lpcware.com%2Fcontent%2Fnxpfile%2Flpcopen-software-development-platform-lpc11xx-packages-0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.lpcware.com/content/nxpfile/lpcopen-software-development-platform-lpc11xx-packages-0&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Of course you can write to that IOCON register without library...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;LPC_IOCON-&amp;gt;RESET_PIO0_0 = value; &lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Or you can use the debugger to set the pin function to GPIO&amp;nbsp; &lt;SPAN class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;&lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:22:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1114-0-0-and-0-4-as-GPIO/m-p/595108#M22761</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:22:50Z</dc:date>
    </item>
  </channel>
</rss>

