<?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: Frequenz messung</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788635#M31723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sorry for my delay, was out for 2 weeks.&lt;/P&gt;&lt;P&gt;I have changed the pin and setup as recommended, but the getting the same result.&lt;/P&gt;&lt;P&gt;I also can read the toggling pin 3_4.&lt;/P&gt;&lt;P&gt;Are there some other suggestions?&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Sep 2018 14:52:42 GMT</pubDate>
    <dc:creator>bernd1</dc:creator>
    <dc:date>2018-09-17T14:52:42Z</dc:date>
    <item>
      <title>Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788633#M31721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My goal is to measure a sensor frequency in between 50kHz to 120kHz for a high resolution. As the first step I want to divide this frequency to be able for handle on the LPC111x.&lt;/P&gt;&lt;P&gt;Therefore I am using that signal as an external input on PIO3_5 to the Timer/counter using the Timer/Counter setup:&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_IOCON-&amp;gt;PIO3_5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = (LPC_IOCON-&amp;gt;PIO3_5 &amp;amp; ~(0x3FF)) | 0x21;&amp;nbsp; //set up pin (sec 7.4.17)&amp;nbsp; (no pull up, Hyst enable)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;&amp;nbsp;LPC_SYSCON-&amp;gt;SYSAHBCLKCTRL |= (1&amp;lt;&amp;lt;7)|(1&amp;lt;&amp;lt;16)|(1&amp;lt;&amp;lt;6);&amp;nbsp; //enable clock signal CT16B0 (sec 3.5.14)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_TMR16B0 -&amp;gt;PR &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //no preclear (sec 18.7.4)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_TMR16B0 -&amp;gt;MR0 = 200;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//compare-counter(sec 18.7.7)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_TMR16B0 -&amp;gt;MR1 = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_TMR16B0 -&amp;gt;MCR = 0x03;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;//TC Reset on MR0 Match, enable Interrupt (sec 18.7.6)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;&amp;nbsp;LPC_TMR16B0-&amp;gt;EMR&amp;nbsp; = 0x30;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;//do nothing (sec 18.7.10) &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_TMR16B0 -&amp;gt;PWMC = 0;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//no PWM Mode, (sec 18.7.12)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_TMR16B0 -&amp;gt;CTCR = 05;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;// (sec 18.7.11)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; counter mode on rising edge, CT16Bn_CAP0&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_TMR16B0 -&amp;gt;TCR &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;= 02;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//reset (sec 18.7.2)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 8.0pt;"&gt;LPC_TMR16B0 -&amp;gt;TCR &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;= 01;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//GO (sec 18.7.2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;For the first test I am reading in a polling loop the&amp;nbsp; LPC_TMR16B0-&amp;gt;TC and expecting random values, but getting just zero.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;I am not going to use the Capture.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;May be I am not understanding some basics in using the external Counter input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2018 07:35:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788633#M31721</guid>
      <dc:creator>bernd1</dc:creator>
      <dc:date>2018-09-04T07:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788634#M31722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bernd,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You are using the wrong input pin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; From your code, I can find you are using TMR16B0, but PIO3_5 is the CT16B1_CAP1 pin.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/68119i70628623E7F4D711/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So, actually you can use the PIO3_4 pin, this is the CT16B0_CAP1 pin.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/68065i6B682CD17340D7A7/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please modify the pin, and try again, I suggest you enable the internal pull up resistor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;If you still have question about it, please kindly let me know.&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, 05 Sep 2018 03:29:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788634#M31722</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-09-05T03:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788635#M31723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sorry for my delay, was out for 2 weeks.&lt;/P&gt;&lt;P&gt;I have changed the pin and setup as recommended, but the getting the same result.&lt;/P&gt;&lt;P&gt;I also can read the toggling pin 3_4.&lt;/P&gt;&lt;P&gt;Are there some other suggestions?&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2018 14:52:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788635#M31723</guid>
      <dc:creator>bernd1</dc:creator>
      <dc:date>2018-09-17T14:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788636#M31724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi bernd,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Thanks for your updated information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Do you debug your code, when you input the toggle wave to pin 3_4, check the timer counter, whether it can counter?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If no, please share me your project, I will help you to check it in my side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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>Tue, 18 Sep 2018 07:34:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788636#M31724</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-09-18T07:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788637#M31725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry,&lt;/P&gt;&lt;P&gt;thank for the real fast answer.&lt;/P&gt;&lt;P&gt;here is the extract of my from the priject:&lt;/P&gt;&lt;P&gt;void initCTR() // Sensor-input 50...120kHz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;#define&amp;nbsp;&lt;SPAN&gt;DYN_STAND (3,4)&lt;/SPAN&gt;&lt;BR /&gt;{&lt;BR /&gt; LPC_IOCON-&amp;gt;PIO3_4 = (LPC_IOCON-&amp;gt;PIO3_4 &amp;amp; ~(0x3FF)) | 0x21; //set up pin (sec 7.4.17) (no pull up, Hyst enable)&lt;BR /&gt; LPC_SYSCON-&amp;gt;SYSAHBCLKCTRL |= (1&amp;lt;&amp;lt;7)|(1&amp;lt;&amp;lt;16)|(1&amp;lt;&amp;lt;6); //enable clock signal CT16B1 (sec 3.5.14) &lt;BR /&gt; LPC_TMR16B0 -&amp;gt;PR = 0; //no prescaler (sec 18.7.4)&lt;BR /&gt; LPC_TMR16B0 -&amp;gt;MR0 = 200; //compare-counter(sec 18.7.7)&lt;BR /&gt; LPC_TMR16B0 -&amp;gt;MR1 = 0; //&lt;BR /&gt; LPC_TMR16B0 -&amp;gt;MCR = 0x03; //TC Reset on MR0 Match, enable Interrupt (sec 18.7.6)&lt;BR /&gt; LPC_TMR16B0 -&amp;gt;EMR = 0x30; //do nothing (sec 18.7.10) &lt;BR /&gt; LPC_TMR16B0 -&amp;gt;PWMC = 0; //no PWM Mode, (sec 18.7.12)&lt;BR /&gt; LPC_TMR16B0 -&amp;gt;CTCR = 05; // (sec 18.7.11) counter mode on rising edge, CT16Bn_CAP1&lt;BR /&gt; &lt;BR /&gt;// LPC_TMR16B0 -&amp;gt;CCR = 00; // (sec 19.7.8) &lt;BR /&gt; LPC_TMR16B0 -&amp;gt;TCR = 02; //reset (sec 18.7.2) &lt;BR /&gt; LPC_TMR16B0 -&amp;gt;TCR = 01; //GO (sec 18.7.2)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void TIMER16_0_IRQHandler(void)&lt;BR /&gt; {&lt;BR /&gt; LPC_TMR16B0-&amp;gt;IR = (1&amp;lt;&amp;lt;0); //Clear MR0 Interrupt flag&lt;BR /&gt; if (GPIOGetValue DYN_STAND == 1) GPIOSetValue TestPin;&lt;BR /&gt; else GPIOclrValue TestPin; &lt;BR /&gt; return; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;............&lt;/P&gt;&lt;P&gt;initCTR(); &lt;BR /&gt; NVIC_EnableIRQ(TIMER_16_0_IRQn);&lt;/P&gt;&lt;P&gt;.........&lt;/P&gt;&lt;P&gt;loop for&lt;/P&gt;&lt;P&gt;sprintf(String,"Count: %04X %1X",LPC_TMR16B0-&amp;gt;TC, GPIOGetValue DYN_STAND);&lt;/P&gt;&lt;P&gt;Print(String);&lt;/P&gt;&lt;P&gt;............&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On sys system the TMR16B1 is running perfect a PWM used for a back light.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2018 09:53:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788637#M31725</guid>
      <dc:creator>bernd1</dc:creator>
      <dc:date>2018-09-18T09:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788638#M31726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bernd,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Just attach the project, you can delete all the other important code to you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Just leave the problem timer code, then I can test it directly on my side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Please also tell me your LPC111x full name.&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, 19 Sep 2018 05:32:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788638#M31726</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-09-19T05:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788639#M31727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry,&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;It is an existing more complex project in which we just to make an add-on. So it is not so easy to cut off the rest.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;The whole attachment I did you already have got.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;The processor is a LPC1115/303 using a low clock (3.6864) to prevent RF-interference.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;To measure the wanted frequency we have to divide it first to be able to handle it with the processor.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;The first step of my intention was just to make that divider using the TMR16B0.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;After that I may use the TMR32Bx as well.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;Best regards&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;Bernd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 06:41:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788639#M31727</guid>
      <dc:creator>bernd1</dc:creator>
      <dc:date>2018-09-19T06:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788640#M31728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi bernd,&lt;/P&gt;&lt;P&gt;OK, I will test it on my side, please give me more time.&lt;/P&gt;&lt;P&gt;After I test it, I will let you know.&lt;/P&gt;&lt;P&gt;Please wait patiently, thanks.&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>Thu, 20 Sep 2018 09:38:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788640#M31728</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-09-20T09:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Frequenz messung</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788641#M31729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry,&lt;/P&gt;&lt;P&gt;just to remember, do you need more time?&lt;/P&gt;&lt;P&gt;Regards Bernd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2018 06:18:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Frequenz-messung/m-p/788641#M31729</guid>
      <dc:creator>bernd1</dc:creator>
      <dc:date>2018-10-05T06:18:05Z</dc:date>
    </item>
  </channel>
</rss>

