<?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: Blink LED on LPC1114FN28 is not working</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240927#M44162</link>
    <description>&lt;P&gt;Hi Kawi&lt;/P&gt;
&lt;P&gt;There is LPCOpen document on the LPCOpen download site. You can check by yourself if the related information is included.&lt;/P&gt;
&lt;P&gt;Anyway, build chip and board file is necessary because the application project need it during build.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-03-05_18-34-04.jpg" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/138873i00C2804E6C28436E/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-03-05_18-34-04.jpg" alt="2021-03-05_18-34-04.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Have a nice day,&lt;/P&gt;
&lt;P&gt;Jun Zhang&lt;/P&gt;</description>
    <pubDate>Fri, 05 Mar 2021 10:39:05 GMT</pubDate>
    <dc:creator>ZhangJennie</dc:creator>
    <dc:date>2021-03-05T10:39:05Z</dc:date>
    <item>
      <title>Blink LED on LPC1114FN28 is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240572#M44151</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am quite new to LPC MCUs. I&amp;nbsp; am using Keil v5 and have a problem to run the following sourcecode.&lt;/P&gt;&lt;P&gt;#include &amp;lt;LPC11xx.h&amp;gt; /* LPC11xx Peripheral Registers */&lt;BR /&gt;#include "system_LPC11xx.h"&lt;/P&gt;&lt;P&gt;#define LED (1&amp;lt;&amp;lt;9) /* LED D1 connect to PIO1_9 */&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt;LPC_SYSCON -&amp;gt;SYSAHBCLKCTRL |= (1 &amp;lt;&amp;lt; 8); // Enable Clock for TMR1&lt;BR /&gt;LPC_IOCON -&amp;gt;PIO1_9 |= (1 &amp;lt;&amp;lt; 0); // PIN1_9 = CT16B1_MAT0&lt;BR /&gt;LPC_TMR16B1 -&amp;gt;MR0 = 3000; // 50% Duty Cycle&lt;BR /&gt;LPC_TMR16B1 -&amp;gt;PR = 12000;&lt;BR /&gt;LPC_TMR16B1 -&amp;gt;MR3 = 4000; // Cycle Length&lt;BR /&gt;LPC_TMR16B1 -&amp;gt;MCR |= (1 &amp;lt;&amp;lt; 10); // TC Reset on MR3 Match&lt;BR /&gt;LPC_TMR16B1 -&amp;gt;PWMC |= (1 &amp;lt;&amp;lt; 0); // PWM Mode&lt;BR /&gt;LPC_TMR16B1 -&amp;gt;TCR |= (1 &amp;lt;&amp;lt; 0); // GO&lt;BR /&gt;while (1);&lt;BR /&gt;&lt;BR /&gt;// unreachable&lt;BR /&gt;return 0;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;I copied this sourcecode from a working project, which I found in the Internet, into my project. I created my project from scratch.&lt;/P&gt;&lt;P&gt;If I build and upload my project the LED is not blinking.&lt;/P&gt;&lt;P&gt;If I build and upload the project which I found in the Internet, the LED is blinking.&lt;/P&gt;&lt;P&gt;I am afraid that I missed a very important thing in my project to configure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could somebody help me please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;Kai&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 00:13:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240572#M44151</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-05T00:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Blink LED on LPC1114FN28 is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240809#M44157</link>
      <description>&lt;P&gt;Hi Kai,&lt;/P&gt;
&lt;P&gt;Which demo package do you work with? Did you test LPCOpen from this site?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.nxp.com/design/microcontrollers-developer-resources/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc11xx:LPCOPEN-SOFTWARE-FOR-LPC11XX" target="_blank"&gt;https://www.nxp.com/design/microcontrollers-developer-resources/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc11xx:LPCOPEN-SOFTWARE-FOR-LPC11XX&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Please make sure you build chip lib and board lib before the blinky demo.&lt;/P&gt;
&lt;P&gt;Have a nice day,&lt;/P&gt;
&lt;P&gt;Jun Zhang&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 07:43:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240809#M44157</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2021-03-05T07:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Blink LED on LPC1114FN28 is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240909#M44161</link>
      <description>&lt;P&gt;Hi Jun,&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;I will dig into the demo packages but the problem is that I setup up the chip on a bread board. So I do not have a LPCXpresso board with that chip.&lt;/P&gt;&lt;P&gt;I was not aware to build CHIp and board Library. Is the a documentation available to do that?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kai&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 10:04:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240909#M44161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-05T10:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Blink LED on LPC1114FN28 is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240927#M44162</link>
      <description>&lt;P&gt;Hi Kawi&lt;/P&gt;
&lt;P&gt;There is LPCOpen document on the LPCOpen download site. You can check by yourself if the related information is included.&lt;/P&gt;
&lt;P&gt;Anyway, build chip and board file is necessary because the application project need it during build.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-03-05_18-34-04.jpg" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/138873i00C2804E6C28436E/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-03-05_18-34-04.jpg" alt="2021-03-05_18-34-04.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Have a nice day,&lt;/P&gt;
&lt;P&gt;Jun Zhang&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 10:39:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1240927#M44162</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2021-03-05T10:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Blink LED on LPC1114FN28 is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1241259#M44165</link>
      <description>&lt;P&gt;-&lt;/P&gt;</description>
      <pubDate>Sat, 06 Mar 2021 00:07:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1241259#M44165</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-06T00:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Blink LED on LPC1114FN28 is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1241262#M44166</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;I got it working with MCUXpresso, which is actually quite good.&lt;/P&gt;&lt;P&gt;I try to get it running on KEIL as well.&lt;/P&gt;&lt;P&gt;Many thanks for your support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kai&lt;/P&gt;</description>
      <pubDate>Sun, 07 Mar 2021 19:09:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1241262#M44166</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-07T19:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Blink LED on LPC1114FN28 is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1241496#M44174</link>
      <description>&lt;P&gt;You are welcome!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 05:21:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Blink-LED-on-LPC1114FN28-is-not-working/m-p/1241496#M44174</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2021-03-08T05:21:20Z</dc:date>
    </item>
  </channel>
</rss>

