<?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 Re: Different Clock Speed on LPC1768 using LPCXpresso in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665090#M26584</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using LPCOpen, the systen clock speed is normally set in the global variable SystemCoreClock.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, that has nothing to do with your problem. Your delay loop is entirely dependent on the code generated by the compiler. There is no way to guarantee that your C code will compile into the same code, and thus take the same time, between different version of the same compiler, let alone a different compiler. Several&amp;nbsp;accurate&amp;nbsp;ways of defining a delay loop are listed in the thread that @DavidThedans provided.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Feb 2017 10:08:16 GMT</pubDate>
    <dc:creator>converse</dc:creator>
    <dc:date>2017-02-25T10:08:16Z</dc:date>
    <item>
      <title>Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665087#M26581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;I'm trying to program my LPC1768 board using LPCXpresso IDE&lt;/P&gt;&lt;P&gt;But i have a trouble building a code that uses delay function&lt;/P&gt;&lt;P&gt;I built a program with KEIL with CPU clock speed of 100MHz&lt;/P&gt;&lt;P&gt;the function delay for 1 ms is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void delayms (void) {&lt;/P&gt;&lt;P&gt;int i=25000;&lt;/P&gt;&lt;P&gt;while(i--);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;This was built&amp;nbsp;and ran perfectly using KEIL IDE&lt;/P&gt;&lt;P&gt;But when i built the same code on LPCXpresso i get 1.75ms of delay and not 1ms!&lt;/P&gt;&lt;P&gt;The system configuration file is identical on both IDEs (system_17xx.c) and Clock is set to 100MHz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What could be the cause of the problem?&lt;/P&gt;&lt;P&gt;Is there anything to be changed in the startup file? (cr_startup_lpc175x_6x.c)&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 12:47:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665087#M26581</guid>
      <dc:creator>cyrusvali</dc:creator>
      <dc:date>2017-02-24T12:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665088#M26582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is only by luck that the value 25000 causes a delay of 1ms.&lt;/P&gt;&lt;P&gt;And that may change when changing compiler optimizations.&lt;/P&gt;&lt;P&gt;A loop of this kind is totally dependent upon the code that the compiler generates.&lt;/P&gt;&lt;P&gt;see this link.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.lpcware.com/content/forum/what-do-you-use-to-delay" title="https://www.lpcware.com/content/forum/what-do-you-use-to-delay"&gt;What do you use to delay? | www.LPCware.com&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 16:11:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665088#M26582</guid>
      <dc:creator>rocketdawg2</dc:creator>
      <dc:date>2017-02-24T16:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665089#M26583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;P&gt;Is there any way to check the exact clock speed?&lt;/P&gt;&lt;P&gt;Is there any function defined ?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 20:04:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665089#M26583</guid>
      <dc:creator>cyrusvali</dc:creator>
      <dc:date>2017-02-24T20:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665090#M26584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using LPCOpen, the systen clock speed is normally set in the global variable SystemCoreClock.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, that has nothing to do with your problem. Your delay loop is entirely dependent on the code generated by the compiler. There is no way to guarantee that your C code will compile into the same code, and thus take the same time, between different version of the same compiler, let alone a different compiler. Several&amp;nbsp;accurate&amp;nbsp;ways of defining a delay loop are listed in the thread that @DavidThedans provided.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2017 10:08:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665090#M26584</guid>
      <dc:creator>converse</dc:creator>
      <dc:date>2017-02-25T10:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665091#M26585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using LPC1768&lt;/P&gt;&lt;P&gt;is there any LPCOpen core for this chip?&lt;/P&gt;&lt;P&gt;all i could find is for lpc1788&lt;/P&gt;&lt;P&gt;Also i have a problem with debugging&lt;/P&gt;&lt;P&gt;why is Peripherals pane completely empty?&lt;/P&gt;&lt;P&gt;i'm connecting with Jlink to the board&lt;/P&gt;&lt;P&gt;i can build the code with no problem though&lt;/P&gt;&lt;P&gt;is there any useful guide to develop on LPCXpresso for LPC1768?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2017 19:38:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665091#M26585</guid>
      <dc:creator>cyrusvali</dc:creator>
      <dc:date>2017-02-27T19:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665092#M26586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use lpcopen for lpc1769. It is identical chip, just higher max speed. It is provided in lpcxpresso examples or can be found here&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://www.nxp.com/products/software-and-tools/hardware-development-tools/lpcxpresso-boards/lpcopen-software-development-platform-lpc17xx:LPCOPEN-SOFTWARE-FOR-LPC17XX" title="http://www.nxp.com/products/software-and-tools/hardware-development-tools/lpcxpresso-boards/lpcopen-software-development-platform-lpc17xx:LPCOPEN-SOFTWARE-FOR-LPC17XX"&gt;http://www.nxp.com/products/software-and-tools/hardware-development-tools/lpcxpresso-boards/lpcopen-software-development…&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As as far as I remember, peripheral view is not supported with jlink, only with cmsis-dap probes, like lpc-link2.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2017 19:48:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665092#M26586</guid>
      <dc:creator>converse</dc:creator>
      <dc:date>2017-02-27T19:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665093#M26587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;Can i download and use&amp;nbsp;CMSIS&amp;nbsp;packages for eclipse instructed in the below link?&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://gnuarmeclipse.github.io/plugins/packs-manager/" title="http://gnuarmeclipse.github.io/plugins/packs-manager/"&gt;Packs manager&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it supports Jlink AFAIK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2017 20:12:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665093#M26587</guid>
      <dc:creator>cyrusvali</dc:creator>
      <dc:date>2017-02-27T20:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665094#M26588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. Packs manager is not part of lpcxpresso. NXP do not support CMSIS. Only lpcopen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2017 20:43:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665094#M26588</guid>
      <dc:creator>converse</dc:creator>
      <dc:date>2017-02-27T20:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665095#M26589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cyrus Vali,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; As you know, different IDE will generated difference asm code, that's why you get different time. It also relate to the optimization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If you want to get precise delay, I suggest you to use the hardware timer, that won't be relate to the IDE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P style="padding: 0px; min-height: 8pt;"&gt;&amp;nbsp;&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, 28 Feb 2017 08:17:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665095#M26589</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2017-02-28T08:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665096#M26590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Can LPCXpresso compile assembly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;&lt;SPAN style="color: #931a68; text-decoration: underline;"&gt;__&lt;/SPAN&gt;&lt;SPAN style="color: #931a68;"&gt;asm&lt;/SPAN&gt;&amp;nbsp; void wait()&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;{&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;&amp;nbsp; &amp;nbsp; nop&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;&amp;nbsp; &amp;nbsp; BX lr&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;}&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;what is wrong with this code?&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;it works on Keil&lt;/P&gt;&lt;P style="font-size: 13px;"&gt;LPCXpresso says wrong syntax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2017 11:58:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665096#M26590</guid>
      <dc:creator>cyrusvali</dc:creator>
      <dc:date>2017-02-28T11:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665097#M26591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cyrus Vali,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; You can try this code in LPCXpresso IDE:&lt;/P&gt;&lt;P&gt;void wait(void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; __ASM volatile ("nop");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; __ASM volatile ("BX lr");&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Wed, 01 Mar 2017 02:37:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665097#M26591</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2017-03-01T02:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665098#M26592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To confirm or determine the CPU clock speed using SWV try this:&amp;nbsp; &lt;SPAN style="font-size: 15px;"&gt;&lt;A href="http://www.keil.com/appnotes/docs/apnt_297.asp"&gt;www.keil.com/appnotes/docs/apnt_297.asp&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SystemCoreClock is a calculated value and not measured.&lt;/P&gt;&lt;P&gt;I have seen a bug in the CMSIS system file cause this global variable to have the wrong value - not often though.&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 19:12:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665098#M26592</guid>
      <dc:creator>robertboys</dc:creator>
      <dc:date>2017-04-11T19:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665099#M26593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be better to use the repetitive interrupt timer.&lt;/P&gt;&lt;P&gt;RIT_Delay_Ten_Nsec has a minimum delay of 10 nanoseconds.&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;#include &amp;lt;stdint.h&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void RIT_Delay_Ten_Nsec(uint32_t ten_nsec)&lt;BR /&gt;{&lt;BR /&gt; rit_delay_done = 0;&lt;/P&gt;&lt;P&gt;/* The RIT count increments every 10ns */&lt;BR /&gt; RICOMPVAL = ten_nsec;&lt;BR /&gt; RICOUNTER = 0x00000000;&lt;/P&gt;&lt;P&gt;/* Enable timer */&lt;BR /&gt; RICTRL = RICTRL_RITEN | RICTRL_RITENCLR;&lt;/P&gt;&lt;P&gt;while (!rit_delay_done)&lt;BR /&gt; ; /* do nothing */&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A software instruction loop in assembler is a second choice.&lt;/P&gt;&lt;P&gt;delay_100nsec has a minimum delay of 100 nanoseconds.&lt;/P&gt;&lt;P&gt;This assumes that the CPU clock is 100MHz. You can add&lt;/P&gt;&lt;P&gt;or subtract "nop" instructions to adjust the delay time in the loop.&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;#include &amp;lt;stdint.h&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void delay_100nsec(uint32_t num_nsec)&lt;BR /&gt;{&lt;BR /&gt; __asm volatile ( "delay_100:" );&lt;BR /&gt; __asm volatile ( "nop" );&lt;BR /&gt; __asm volatile ( "nop" );&lt;BR /&gt; __asm volatile ( "subs r0, r0, #1" );&lt;BR /&gt; __asm volatile ( "bne delay_100" );&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 16:29:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665099#M26593</guid>
      <dc:creator>rons</dc:creator>
      <dc:date>2017-04-12T16:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Different Clock Speed on LPC1768 using LPCXpresso</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665100#M26594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In general, never rely on a software loop if you need a precise time delay. Use a hardware timer, or the SysTick timer. The LPC1769 LPCOpen examples (lpcopen_2_10_lpcxpresso_nxp_lpcxpresso_1769.zip archive) distributed with MCUXpresso has timer examples (e.g. periph_systick, periph_timer) to reference. These examples work with the LPC1768 provided the maximum core clock is honored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;LPCXpresso Support&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 18:15:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Different-Clock-Speed-on-LPC1768-using-LPCXpresso/m-p/665100#M26594</guid>
      <dc:creator>lpcxpresso_supp</dc:creator>
      <dc:date>2017-04-12T18:15:51Z</dc:date>
    </item>
  </channel>
</rss>

