<?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: Problem with the main oscillator</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587262#M21580</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Patrick_W on Mon Apr 20 01:37:57 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey Wolfgang:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) With the 14.7456MHz crystal, the meassured frequency varies between 4.75 and 4.76MHz&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) The shunt cabacity souldn't be larger then 7pF&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 20:25:45 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T20:25:45Z</dc:date>
    <item>
      <title>Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587260#M21578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Patrick_W on Mon Apr 20 00:36:26 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;it's me again. After debugging my board with the IRC i wanted to switch to the main osc. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So i wrote a function which i call at the beginning of the main function. In this function i wanted to set up the oscillator&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and deactivate the PLL0 (i don't need it). The CPU should just be clocked by the main osci. &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;
void MAIN_CLK_without_PLL(bool f_15_25MHz)
{
//first step PLL0 Setup Sequence
if(Chip_Clock_IsMainPLLConnected())
{
Chip_Clock_DisablePLL(SYSCTL_MAIN_PLL, SYSCTL_PLL_CONNECT);//disconnect PLL0
}
//second step in PLL0 Setup Sequence
if(Chip_Clock_IsMainPLLEnabled())
{
Chip_Clock_DisablePLL(SYSCTL_MAIN_PLL, SYSCTL_PLL_ENABLE);//deactivat PLL0
}
//third step in PLL0 Setup Sequence

if(f_15_25MHz)
{
LPC_SYSCTL-&amp;gt;SCS |= SYSCTL_OSCRANGE_15_25;//Oscillator got a frequencie between 15 and 25 MHz
}else{
LPC_SYSCTL-&amp;gt;SCS &amp;amp;= ~SYSCTL_OSCRANGE_15_25;
 }

LPC_SYSCTL-&amp;gt;SCS |= SYSCTL_OSCEC;//activate main oscillator
while(!Chip_Clock_IsCrystalEnabled()) {}//wait till oscillator is started correc

Chip_Clock_SetCPUClockDiv(0);//set the cpu prescaller to 1 
Chip_Clock_SetMainPLLSource(SYSCTL_PLLCLKSRC_MAINOSC);

//for testing deliver the clock on CLKOUT

Chip_IOCON_PinMux(LPC_IOCON, PORT_1, PIN_27, IOCON_MODE_INACT, IOCON_FUNC1);
Chip_Clock_SetCLKOUTSource(SYSCTL_CLKOUTSRC_CPU, 1);
Chip_Clock_EnableCLKOUT();
}
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After i tried this with several crystals (24MHz and 14.7456MHz) and measured on the CLKOUT Pin the frequency always had been wrong.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The crystall is connected to two 18pF Capacities.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Have i made a error in setting up the oscillator? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any advice would be great.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587260#M21578</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587261#M21579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by wmues on Mon Apr 20 01:02:18 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;How big is the frequency error? Please give numbers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How big is the shunt capacity of your crystals in the data sheet?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We can not help you without data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Wolfgang&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587261#M21579</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587262#M21580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Patrick_W on Mon Apr 20 01:37:57 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey Wolfgang:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) With the 14.7456MHz crystal, the meassured frequency varies between 4.75 and 4.76MHz&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) The shunt cabacity souldn't be larger then 7pF&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587262#M21580</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587263#M21581</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 Mon Apr 20 04:50:14 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Patrick_W&lt;/STRONG&gt;&lt;BR /&gt;The crystall is connected to two 18pF Capacities.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Look in your crystal datasheet (CL) and calculate CX1/2&amp;nbsp; :O &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%2Ffaq%2Fhow-calculate-value-crystal-load-capacitors" rel="nofollow" target="_blank"&gt;http://www.lpcware.com/content/faq/how-calculate-value-crystal-load-capacitors&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then change your caps, probably to something around 30pF&amp;nbsp; :) &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587263#M21581</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587264#M21582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by wmues on Mon Apr 20 06:10:06 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I would start with Cstray = 7pF.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587264#M21582</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587265#M21583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Patrick_W on Tue Apr 21 01:21:21 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so with the load capacitance of 18pF and Cstray 7pF i got 22pF.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried it, with the same result (meassured frequency at crystal and CLKOUT 5,254 MHz)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So because the crystal delivers 5.2MHz i changed it to another 14.7456MHz crystal. Still the same result.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Even after trying different capacitance (7, 10, 18 and 33pF), same result.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I also tried the whole thing on an other MCU, same result.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also tried with setting the OSC Range (SYSCTL_OSCRANGE_15_25) and without setting the OSC Range.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When i change:&lt;/SPAN&gt;&lt;BR /&gt;&lt;DIV class="j-rte-table"&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca" style="border:1px solid black;background-color:#cacaca;background-color:#cacaca;border:1px solid black;"&gt; &lt;PRE&gt;
Chip_Clock_SetCPUClockDiv(0);
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;SPAN&gt;to&lt;/SPAN&gt;&lt;BR /&gt;&lt;DIV class="j-rte-table"&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca" style="border:1px solid black;background-color:#cacaca;background-color:#cacaca;border:1px solid black;"&gt; &lt;PRE&gt;
Chip_Clock_SetCPUClockDiv(1);
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i meassure a frequency of 7,34MHz. But the signal looks deformed. I attached two pictures of the meassured signals, may it will help you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587265#M21583</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587266#M21584</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 Tue Apr 21 01:24:38 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure what you are doing in detail&amp;nbsp; :quest: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which crystal are we talking about (DS) ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which hardware are we talking about ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you connect your Picoscope to XTAL1 / XTAL2 ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which toolchain are we talking about (could be useful to post your project) ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you test other boards ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587266#M21584</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587267#M21585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Patrick_W on Tue Apr 21 01:43:08 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey R2D2,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) I changed the capacities Cx1 and Cx2 (7, 10,18, 22 and 33pF) also i changed the crystal (same frequency 14,7456 MHz).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I also changed the board (i got two with the same MCU)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) I am not completly sure what you mean. But i first used a Sunny crystal unit and then i switched to a Raltron crystal.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) I am using a LPC1763&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4) The attached pictures are meassured on the CLKOUT Pin, but i also meassured on XTAL1 and XTAL2&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;5) I am using LPCXpresso v7.6.2 with the redlink server and as GDB Debugger: arm-none-eabi-gdb.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;6) I tried it on my two different boards, with the same result.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards &lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587267#M21585</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587268#M21586</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 Tue Apr 21 02:04:48 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt; :quest: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's not possible to help you if you don't tell us which crystal ([color=#c00]DATASHEET[/color]), which hardware and which software and project you are using&amp;nbsp; :(( &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At the moment I just know that you are using some kind of 1763 board with a crystal and a code snippet...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So I don't know if you have a faulty hardware or if your Picosope is too slow... &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587268#M21586</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587269#M21587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Patrick_W on Tue Apr 21 02:17:37 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey R2D2,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i don't wanted to attach a datasheet because it looks really lazy from my side. Like solve my problem&amp;nbsp; ;-) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I developed the board. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code is not more than this function and the main :-D&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587269#M21587</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the main oscillator</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587270#M21588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Patrick_W on Tue Apr 21 04:06:33 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Update:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried it with a 5MHz crystal, everything works pretty well with this frequency.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could it be that my circuit path (about 2cm) is too long for 14,7456MHz?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:25:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Problem-with-the-main-oscillator/m-p/587270#M21588</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:25:50Z</dc:date>
    </item>
  </channel>
</rss>

