<?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: LPC 54618 CORE CLOCK in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1259214#M44576</link>
    <description>&lt;P&gt;Thank you for your reply!&amp;nbsp; As you said,I need set &lt;SPAN&gt;PCVAL register is not equal to （180 -1）forever becase&amp;nbsp; the&amp;nbsp;MR register can't set （1-1）to get 1us interrupt ！ Thank you very much！&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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; &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; &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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Thank you！&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Apr 2021 01:02:07 GMT</pubDate>
    <dc:creator>Xiaoyh</dc:creator>
    <dc:date>2021-04-09T01:02:07Z</dc:date>
    <item>
      <title>LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1257846#M44546</link>
      <description>&lt;P&gt;I want to use “nop” to realize a delay function. I set core clock frequency 180Mhz,so I use 180 "nop"&lt;/P&gt;&lt;P&gt;to realize a&amp;nbsp;microseconds delay,unfortunately,it can't get my expected.Strangly，when I use 90 “nop”&lt;/P&gt;&lt;P&gt;it can close to the right answer.I use LPC54618 official development board.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="configure core clock 180MHZ" style="width: 200px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/141478iFB08DDD68E7BC816/image-size/small?v=v2&amp;amp;px=200" role="button" title="clock_config.jpg" alt="configure core clock 180MHZ" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;configure core clock 180MHZ&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="180 nop" style="width: 200px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/141479i503BB304604E824E/image-size/small?v=v2&amp;amp;px=200" role="button" title="180_nop.jpg" alt="180 nop" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;180 nop&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="90nop" style="width: 200px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/141480i3664D45D64A3C3F2/image-size/small?v=v2&amp;amp;px=200" role="button" title="90_nop.jpg" alt="90nop" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;90nop&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;/** Pure delay NOP */&lt;BR /&gt;#define RUN_NOP {__asm volatile ("nop\n\t");}&lt;BR /&gt;#define RUN_4_NOPS {RUN_NOP; RUN_NOP; RUN_NOP; RUN_NOP;}&lt;BR /&gt;#define RUN_16_NOPS {RUN_4_NOPS; RUN_4_NOPS; RUN_4_NOPS; RUN_4_NOPS;}&lt;BR /&gt;#define RUN_64_NOPS {RUN_16_NOPS; RUN_16_NOPS; RUN_16_NOPS; RUN_16_NOPS;}&lt;BR /&gt;#define RUN_90_NOPS {RUN_64_NOPS; RUN_16_NOPS;\ RUN_16_NOPS;RUN_4_NOPS;RUN_4_NOPS;RUN_NOP;RUN_NOP}&lt;BR /&gt;#define RUN_180_NOPS {RUN_64_NOPS; RUN_64_NOPS;\ RUN_16_NOPS;RUN_16_NOPS;RUN_16_NOPS;RUN_4_NOPS;}&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; this question confused me for a long times,I hope someone can&amp;nbsp;answer me.&lt;/P&gt;&lt;P&gt;&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; &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; &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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 09:18:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1257846#M44546</guid>
      <dc:creator>Xiaoyh</dc:creator>
      <dc:date>2021-04-07T09:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1257887#M44548</link>
      <description>&lt;P&gt;I'm not sure of the exact details for the LPC546xx parts, but flash is not zero wait-state. There is a flash accelerator that mitigates this, but you cannot consistently fetch and execute 1 instruction per cycle from flash (you *may* be able to do this from RAM).&lt;/P&gt;&lt;P&gt;The best way to get accurate delays is to use a timer/counter.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 10:07:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1257887#M44548</guid>
      <dc:creator>converse</dc:creator>
      <dc:date>2021-04-07T10:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1257926#M44549</link>
      <description>&lt;P&gt;Thank you for your replay！I used the ctimer1 to get delay,but I get same result.I set&amp;nbsp;prescale value equal 180-1,matchvalue equal 1 to delay 1 millisecond，unfortunately，it&amp;nbsp; delays 2 millisecond actually. when I set&amp;nbsp;prescale value equal 90-1,matchvalue equal 1 to delay 1 millisecond,it can get right result.I don't know what make that happed？&lt;/P&gt;&lt;P&gt;&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; &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; &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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; thank you！&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 11:18:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1257926#M44549</guid>
      <dc:creator>Xiaoyh</dc:creator>
      <dc:date>2021-04-07T11:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1257933#M44550</link>
      <description>&lt;P&gt;As converse said, Cortex M3/4 devices are more complex than simple 8-bit MCUs. Instruction execution time is not predictable to this degree.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt; I used the ctimer1 to get delay,but I get same result.I set&amp;nbsp;prescale value equal 180-1,matchvalue equal 1 to delay 1 millisecond，&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I suppose you meant microsecond not millisecond.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Use a timer, toggle a GPIO pin in the timer interrupt, and measure the difference. Reduce the timer count to make up for the interrupt latency.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Higher priority interrupts could throw you off.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you have a good justification for an exact 1us delay ? You most probably don't need that accuracy.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 11:27:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1257933#M44550</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2021-04-07T11:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1258419#M44556</link>
      <description>&lt;P&gt;thank you for your reply！I u&lt;SPAN&gt;se a timer, toggle a GPIO pin in the timer interrupt，but have no difference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="clock config" style="width: 200px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/141597iB04741B77712DCEE/image-size/small?v=v2&amp;amp;px=200" role="button" title="clock_config.jpg" alt="clock config" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;clock config&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="180 prescale" style="width: 200px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/141598iB0F7572D63AEB7E4/image-size/small?v=v2&amp;amp;px=200" role="button" title="90.jpg" alt="180 prescale" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;180 prescale&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="90 prescale" style="width: 200px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/141599iC26F0C6822A2DA7A/image-size/small?v=v2&amp;amp;px=200" role="button" title="90.jpg" alt="90 prescale" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;90 prescale&lt;/span&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;my code ：&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;/*******************************************************************************&lt;BR /&gt;* Function : MAINCTIMR_INIT&lt;BR /&gt;* @param ： None&lt;BR /&gt;* @return : None&lt;BR /&gt;* Instruction ： None&lt;BR /&gt;* Remark ： None&lt;BR /&gt;* date ： 2021.2.19&lt;BR /&gt;*******************************************************************************/&lt;BR /&gt;void MAINCTIMR_INIT(void)&lt;BR /&gt;{&lt;BR /&gt;ctimer_config_t config;&lt;BR /&gt;ctimer_match_config_t matchConfig;&lt;BR /&gt;CTIMER_GetDefaultConfig(&amp;amp;config);&lt;BR /&gt;config.prescale = &lt;FONT color="#FF6600"&gt;MAIN_CTIMER_PRE&lt;/FONT&gt;-1;//&lt;FONT color="#FF6600"&gt;MAIN_CTIMER_PRE = 90 or 180&lt;/FONT&gt;&lt;BR /&gt;CTIMER_Init(MAIN_CTIMER, &amp;amp;config);&lt;BR /&gt;&lt;BR /&gt;matchConfig.enableCounterReset = true;&lt;BR /&gt;matchConfig.enableCounterStop = false;&lt;BR /&gt;matchConfig.matchValue = MAIN_CTIMER_MACHVLA; //&amp;nbsp;&lt;FONT color="#FF6600"&gt;MAIN_CTIMER_MACHVLA =1&lt;/FONT&gt;&lt;BR /&gt;matchConfig.outControl = kCTIMER_Output_NoAction;&lt;BR /&gt;matchConfig.outPinInitState = false;&lt;BR /&gt;matchConfig.enableInterrupt = true;&lt;BR /&gt;CTIMER_SetupMatch(&lt;FONT color="#00FFFF"&gt;MAIN_CTIMER&lt;/FONT&gt;, MAIN_CTIMR_MATCH, &amp;amp;matchConfig) //&lt;FONT color="#00FFFF"&gt;MAIN_CTIMER = CTIMER1&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;CTIMER_EnableInterrupts(MAIN_CTIMER,kCTIMER_Match1InterruptEnable);&lt;BR /&gt;CTIMER_StartTimer(MAIN_CTIMER);&lt;BR /&gt;}&lt;BR /&gt;/*******************************************************************************&lt;BR /&gt;* Function : MAINTIMR_IRQHandler&lt;BR /&gt;* @param ： None&lt;BR /&gt;* @return : None&lt;BR /&gt;* Instruction ： None&lt;BR /&gt;* Remark ： None&lt;BR /&gt;* date ： 2021.2.19&lt;BR /&gt;*******************************************************************************/&lt;BR /&gt;void &lt;FONT color="#339966"&gt;MAIN_CTIMER_ISR&lt;/FONT&gt;(void)&amp;nbsp; &amp;nbsp; &amp;nbsp; //&lt;FONT color="#339966"&gt;MAIN_CTIMER_ISR =&amp;nbsp;CTIMER1_IRQHandler&lt;/FONT&gt;&lt;BR /&gt;{&lt;BR /&gt;if(MAIN_CTIMER-&amp;gt;IR &amp;amp; MAIN_CTIMERMACH_FLAG){&lt;BR /&gt;// time_stick++;&lt;BR /&gt;GPIO_PortToggle(GPIO,0X03,0X4000);&lt;BR /&gt;MAIN_CTIMER-&amp;gt;IR = MAIN_CTIMERMACH_FLAG;&lt;BR /&gt;}&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;SPAN&gt;&amp;nbsp; Is something wrong with core clock ?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;SPAN&gt;&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; &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; &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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;FONT color="#000000"&gt;thank you!&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Apr 2021 01:22:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1258419#M44556</guid>
      <dc:creator>Xiaoyh</dc:creator>
      <dc:date>2021-04-08T01:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1258567#M44560</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; config.prescale =&amp;nbsp;&lt;FONT color="#FF6600"&gt;MAIN_CTIMER_PRE&lt;/FONT&gt;-1;//&lt;FONT color="#FF6600"&gt;MAIN_CTIMER_PRE = 90 or 180&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;I think you might need to check the user manual, especially the clock chain section. For many Cortex M MCUs I dealt with, the maximal peripheral clock was &lt;FONT face="courier new,courier"&gt;core_clock/2&lt;/FONT&gt;, i.e. 90 MHz in your case. The scope pictures look like that.&lt;/P&gt;&lt;P&gt;I don't have very much experience with the LPC54xxx series myself.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Apr 2021 06:05:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1258567#M44560</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2021-04-08T06:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1258724#M44568</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;
&lt;P&gt;The MATCH value in MR register should be less one than your match data, just like PCVAL register.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Apr 2021 08:54:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1258724#M44568</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2021-04-08T08:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1259214#M44576</link>
      <description>&lt;P&gt;Thank you for your reply!&amp;nbsp; As you said,I need set &lt;SPAN&gt;PCVAL register is not equal to （180 -1）forever becase&amp;nbsp; the&amp;nbsp;MR register can't set （1-1）to get 1us interrupt ！ Thank you very much！&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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; &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; &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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Thank you！&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 01:02:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1259214#M44576</guid>
      <dc:creator>Xiaoyh</dc:creator>
      <dc:date>2021-04-09T01:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 54618 CORE CLOCK</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1259222#M44577</link>
      <description>&lt;P&gt;Thank you for your reply! The LPC54618 max frequency is 180Mhz,I have solute this question，the biggest reason is MR&amp;nbsp;register value is error！&lt;/P&gt;&lt;P&gt;&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; &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; &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; thank you！&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 01:06:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-54618-CORE-CLOCK/m-p/1259222#M44577</guid>
      <dc:creator>Xiaoyh</dc:creator>
      <dc:date>2021-04-09T01:06:48Z</dc:date>
    </item>
  </channel>
</rss>

