<?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>LPCXpresso IDEのトピックRe: Writing to GPIO reg</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589080#M28451</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by frame on Mon Jul 09 05:01:31 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;ArnesB's second hint is much more important:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is the clock for the GPIO peripheral enabled ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That is the most common trap in Cortex Mx development, there is almost nobody that did not yet step in. And, it is usually NOT noted in the respective reference manual section of the peripheral unit, but only in the system control/clock generation section.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;All peripheral clocks are off after reset, and writing to unclocked peripheral registers has the described effect, i.e. none.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 02:44:38 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-16T02:44:38Z</dc:date>
    <item>
      <title>Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589073#M28444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by graynomad on Sun Jul 08 07:50:10 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I told you guys there would be questions &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;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I finally received my Xpresso boards, plugged one in and downloaded the few 1000 lines of code I've been writing while waiting for hardware. Blow me down if most things seem to work, software timers with callback functions, all sorts of stuff I've written to get a feel for the system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And then I hit a brick wall on something that should be a non-event.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't seem to be able to write to GPIO0, any of it but let's look at the direction reg.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The actual code uses indexes into lookup tables of pointers etc etc, the debugger verifies that this is working but to get to the nitty gritty the end result is this&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;&amp;nbsp;&amp;nbsp; LPC_GPIO0-&amp;gt;DIR = 0x80;&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt;Which I think sets P0:7 as an output.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Single stepping and viewing the reg in the debugger shows that the value is not written. The ASM code is as follows (some comments are mine)&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LPC_GPIO0-&amp;gt;DIR = 0x80;
movs r3, #160&amp;nbsp;&amp;nbsp; ; 0xa0
lsls r3, r3, #23&amp;nbsp;&amp;nbsp; ; 0xA0 &amp;lt;&amp;lt; 23 == 0x50000000
movs r2, #128&amp;nbsp;&amp;nbsp; ; 0x80
str r2, [r3, #32]&amp;nbsp; ; r3 + 32 ==&amp;nbsp; 0x50000020&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt;Surely this is writing 0x80 into address 0x50000020 AKA the GPIO0DIR register but the debugger still shows 0 in the reg.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also can't write anything to that (or indeed any) register using the debugger, I can type a value and hit enter but it reverts to 0.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;BTW so far I love this system, the above code of course had bugs, one that caused a hard fault, I look back up the stack frame and quickly find a bad index into a list of pointers to functions. That would have taken all night and more to find using printf-debugging on an Arduino or similar.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589073#M28444</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589074#M28445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by js-nxp on Sun Jul 08 16:31:59 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;You are not alone &lt;SPAN class="lia-unicode-emoji" title=":disappointed_face:"&gt;&lt;LI-EMOJI id="lia_disappointed-face" title=":disappointed_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;A href="http://" rel="nofollow noopener noreferrer" target="_blank"&gt;http://knowledgebase.nxp.com/showthread.php?t=2636&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I just had a look at my GLCD code which I ported from the "other" compiler (both types of chips with the X and without) and I can't figure out what I did after 6 months. :confused:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;some code snippets&lt;/SPAN&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt; #define GLCD_DB_DDR&amp;nbsp; LPC_GPIO2-&amp;gt;DIR
 #define GLCD_DB_PORT LPC_GPIO2-&amp;gt;DATA
 
 #define GLCD_SET_DB(x) GLCD_DB_PORT = x
 #define GLCD_INPUT() GLCD_DB_DDR = 0x00;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
 #define GLCD_OUTPUT() GLCD_DB_DDR = 0xFF;
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt;I needed the macro to make the rest of the code unchanged, so it looks as if your code should work.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589074#M28445</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589075#M28446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by graynomad on Sun Jul 08 21:38:05 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;You are not alone&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;Thanks, it sure feels that way sometimes out here in the boonies. I'm hoping one of the NXP or CR guys will have an answer but it's still Sunday over there I guess.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My code does look like yours so I'm stuffed for the time being.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Update...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can write into the P0:7 IOCONFIG register, both in code and in the debugger so there's nothing fundamentally wrong with things I guess, but I still can't change anything in GPIO0.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589075#M28446</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589076#M28447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by js-nxp on Sun Jul 08 23:10:47 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt; but I still can't change anything in GPIO0. &lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;But that's the reset pin also used by JTAG so it may be locked in other strange modes. ie locked to JTAG unless you change pin mode, don't know if it is even possible without losing JTAG.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you looked at the diagram for the board?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589076#M28447</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589077#M28448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by serge on Sun Jul 08 23:28:37 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;And which LPCXPRESSO are we talking about?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway GPIO is not the standard function of P0. You should first switch the function of those pins to GPIO before setting the direction and eventualy the pull-ups or pull-downs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I do hope Zero agrees with me?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589077#M28448</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589078#M28449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ArneB on Mon Jul 09 00:40:29 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;It would be helpful, if you can mention, which LPC controller you are using...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just two hints:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Have you enabled the clock for the GPIO and IOCON block ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;// Enable GPIO clock for the LPC11xx family...
LPC_SYSCON-&amp;gt;SYSAHBCLKCTRL |= ((1&amp;lt;&amp;lt;16) | (1&amp;lt;&amp;lt;6));&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;SPAN&gt;- Check the IOCON registers. As Serge already said, there are some pins especially on Port 0, which don't have the GPIO function as default.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589078#M28449</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589079#M28450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by js-nxp on Mon Jul 09 00:59:15 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;In my case I'm talking about the LPC1114 Xpresso. :)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589079#M28450</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589080#M28451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by frame on Mon Jul 09 05:01:31 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;ArnesB's second hint is much more important:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is the clock for the GPIO peripheral enabled ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That is the most common trap in Cortex Mx development, there is almost nobody that did not yet step in. And, it is usually NOT noted in the respective reference manual section of the peripheral unit, but only in the system control/clock generation section.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;All peripheral clocks are off after reset, and writing to unclocked peripheral registers has the described effect, i.e. none.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589080#M28451</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589081#M28452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by graynomad on Mon Jul 09 07:26:05 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Have you looked at the diagram for the board?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;Yep, P0:7 is the LED.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;And which LPCXPRESSO are we talking about?&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;LPC1227.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt; You should first switch the function of those pins to GPIO before setting the direction &lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;Done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Check the IOCON registers. As Serge already said, there are some pins&amp;nbsp; especially on Port 0, which don't have the GPIO function as default.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;Done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Have you enabled the clock for the GPIO and IOCON block ? &lt;/SPAN&gt;&lt;HR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Is the clock for the GPIO peripheral enabled ?&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;[B]That's it.[/B]&amp;nbsp; Thank you guys. For future reference on the LPC1227 the code is&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Enable clock for GPIO port 0.
&amp;nbsp;&amp;nbsp;&amp;nbsp; LPC_SYSCON-&amp;gt;SYSAHBCLKCTRL |= (1&amp;lt;&amp;lt;31); 
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt;Note that the IOCON clock (bit 16) was already set, not sure where yet&amp;nbsp; but presumably in the start up code or somewhere. I'll hunt that down,&amp;nbsp; and also look into what other clocks I need.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;That is the most common trap in Cortex Mx development, there is almost nobody that did not yet step in&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;Now I can join that not-so-exclusive club &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;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again everyone.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589081#M28452</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Writing to GPIO reg</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589082#M28453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by js-nxp on Mon Jul 09 17:30:25 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Yep, P0:7 is the LED.&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt; :o Need my glasses adjusted :o I thought you said GPIO0:0&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 02:44:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Writing-to-GPIO-reg/m-p/589082#M28453</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T02:44:40Z</dc:date>
    </item>
  </channel>
</rss>

