<?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のトピックTimer interrupt frequency Limit ?</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/689481#M27831</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;HI&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am using Timer1 to generate an interrupt at every 0.125 &lt;/SPAN&gt;&lt;SPAN style="background: white;"&gt;us&lt;/SPAN&gt; ( 8MHz&amp;nbsp;&lt;SPAN style="background: white;"&gt;timer counter )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;I modify timer setup code of Periph_blinky in LPCOpen.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;Problem : I couldn’t generate an INT at Every 0.125us even through modify timer match value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MCU : LPC4370&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Test Board: LPC-Link2 (included LPC4370)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;Please check the following code that is set up timer INT for 0.125us (micro second)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;static&lt;/STRONG&gt; &lt;STRONG&gt;void&lt;/STRONG&gt; &lt;STRONG&gt;timer_setup&lt;/STRONG&gt;(&lt;STRONG&gt;void&lt;/STRONG&gt;)&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;{&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Enable timer 1 clock and reset it */&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_Init(LPC_TIMER1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_RGU_TriggerReset(&lt;EM&gt;RGU_TIMER1_RST&lt;/EM&gt;);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;while&lt;/STRONG&gt; (Chip_RGU_InReset(&lt;EM&gt;RGU_TIMER1_RST&lt;/EM&gt;)) {}&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Timer setup for match and interrupt at SAMPLERATE */&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_Reset(LPC_TIMER1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_MatchEnableInt(LPC_TIMER1, 1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;// &amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_SetMatch(LPC_TIMER1, 1, (Chip_Clock_GetRate(&lt;EM&gt;CLK_MX_TIMER1&lt;/EM&gt;) / SAMPLERATE));&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;// Chip_Clock_GetRate(&lt;EM&gt;CLK_MX_TIMER1&lt;/EM&gt;): 204000000&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;// SAMPLERATE : 5&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;// Modified code for 0.125us (8MHZ) timer INT&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;Chip_TIMER_SetMatch(LPC_TIMER1, 1, (Chip_Clock_GetRate(&lt;EM&gt;CLK_MX_TIMER1&lt;/EM&gt;) / 25000000 ));&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_ResetOnMatchEnable(LPC_TIMER1, 1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_Enable(LPC_TIMER1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Enable timer interrupt */&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NVIC_EnableIRQ(&lt;EM&gt;TIMER1_IRQn&lt;/EM&gt;);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NVIC_ClearPendingIRQ(&lt;EM&gt;TIMER1_IRQn&lt;/EM&gt;);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;result frequency: 1.6MHz (maximum).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question&lt;/P&gt;&lt;P&gt;1. Is there any limit for timer Interrupt frequency ?&lt;/P&gt;&lt;P&gt;- I want to generate 8Mhz timer Interrupt&lt;/P&gt;&lt;P&gt;2. How can I generate timer Interrupt at every 0.125us ( 8MHz ) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you review.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 May 2017 01:06:39 GMT</pubDate>
    <dc:creator>leeyoungjae</dc:creator>
    <dc:date>2017-05-23T01:06:39Z</dc:date>
    <item>
      <title>Timer interrupt frequency Limit ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/689481#M27831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;HI&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am using Timer1 to generate an interrupt at every 0.125 &lt;/SPAN&gt;&lt;SPAN style="background: white;"&gt;us&lt;/SPAN&gt; ( 8MHz&amp;nbsp;&lt;SPAN style="background: white;"&gt;timer counter )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;I modify timer setup code of Periph_blinky in LPCOpen.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;Problem : I couldn’t generate an INT at Every 0.125us even through modify timer match value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MCU : LPC4370&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Test Board: LPC-Link2 (included LPC4370)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;Please check the following code that is set up timer INT for 0.125us (micro second)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;static&lt;/STRONG&gt; &lt;STRONG&gt;void&lt;/STRONG&gt; &lt;STRONG&gt;timer_setup&lt;/STRONG&gt;(&lt;STRONG&gt;void&lt;/STRONG&gt;)&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;{&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Enable timer 1 clock and reset it */&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_Init(LPC_TIMER1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_RGU_TriggerReset(&lt;EM&gt;RGU_TIMER1_RST&lt;/EM&gt;);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;while&lt;/STRONG&gt; (Chip_RGU_InReset(&lt;EM&gt;RGU_TIMER1_RST&lt;/EM&gt;)) {}&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Timer setup for match and interrupt at SAMPLERATE */&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_Reset(LPC_TIMER1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_MatchEnableInt(LPC_TIMER1, 1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;// &amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_SetMatch(LPC_TIMER1, 1, (Chip_Clock_GetRate(&lt;EM&gt;CLK_MX_TIMER1&lt;/EM&gt;) / SAMPLERATE));&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;// Chip_Clock_GetRate(&lt;EM&gt;CLK_MX_TIMER1&lt;/EM&gt;): 204000000&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;// SAMPLERATE : 5&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;// Modified code for 0.125us (8MHZ) timer INT&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;Chip_TIMER_SetMatch(LPC_TIMER1, 1, (Chip_Clock_GetRate(&lt;EM&gt;CLK_MX_TIMER1&lt;/EM&gt;) / 25000000 ));&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_ResetOnMatchEnable(LPC_TIMER1, 1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chip_TIMER_Enable(LPC_TIMER1);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Enable timer interrupt */&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NVIC_EnableIRQ(&lt;EM&gt;TIMER1_IRQn&lt;/EM&gt;);&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NVIC_ClearPendingIRQ(&lt;EM&gt;TIMER1_IRQn&lt;/EM&gt;);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;result frequency: 1.6MHz (maximum).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question&lt;/P&gt;&lt;P&gt;1. Is there any limit for timer Interrupt frequency ?&lt;/P&gt;&lt;P&gt;- I want to generate 8Mhz timer Interrupt&lt;/P&gt;&lt;P&gt;2. How can I generate timer Interrupt at every 0.125us ( 8MHz ) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you review.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2017 01:06:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/689481#M27831</guid>
      <dc:creator>leeyoungjae</dc:creator>
      <dc:date>2017-05-23T01:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Timer interrupt frequency Limit ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/689482#M27832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" data-content-finding="Community" data-userid="299224" data-username="leeyoungjae" href="https://community.nxp.com/people/leeyoungjae"&gt;LEE Young Jae&lt;/A&gt;,&lt;/P&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Thank you for your interest in NXP Semiconductor products and&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;the opportunity to serve you.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;1. Is there any limit for timer Interrupt frequency ?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Yes, it's up to the CLK_M4_TIMER0, as illustrated in the Table 780 in the reference manual.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;2. How can I generate timer Interrupt at every 0.125us ( 8MHz ) ?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You need to increase the system clock frequency as quick as possible, the 204 MHz is maximum, then simplify the interrupt function as 00125us doesn't allow any extra operation.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Hope it helps.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;Have a great day,&lt;/DIV&gt;&lt;P&gt;TIC&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>Mon, 17 Jul 2017 02:41:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/689482#M27832</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2017-07-17T02:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Timer interrupt frequency Limit ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/1389330#M47424</link>
      <description>&lt;P&gt;Had you solved this&amp;nbsp;&lt;SPAN&gt;Problem? I face the same question. Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 06:46:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/1389330#M47424</guid>
      <dc:creator>jamn</dc:creator>
      <dc:date>2021-12-20T06:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Timer interrupt frequency Limit ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/1389339#M47425</link>
      <description>&lt;P&gt;&amp;nbsp;My clock is 204MHz, but I get only 2MHz. Could you tell me anything to do? Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 06:58:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/1389339#M47425</guid>
      <dc:creator>jamn</dc:creator>
      <dc:date>2021-12-20T06:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Timer interrupt frequency Limit ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/1389355#M47427</link>
      <description>&lt;P&gt;Having an interrupt at a 8MHz rate is a very bad idea. Each interrupt invokes the saving and restoring of the context, which is 12 cycles &lt;EM&gt;&lt;STRONG&gt;each&lt;/STRONG&gt;&lt;/EM&gt; without FPU registers.&lt;/P&gt;&lt;P&gt;This eats away core performance. And even with a moderate handler routine, you will quickly reach the saturation point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 07:19:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/1389355#M47427</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2021-12-20T07:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Timer interrupt frequency Limit ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/1391548#M47474</link>
      <description>&lt;P&gt;Thanks! That is right, I got it.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 23:22:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Timer-interrupt-frequency-Limit/m-p/1391548#M47474</guid>
      <dc:creator>jamn</dc:creator>
      <dc:date>2021-12-23T23:22:33Z</dc:date>
    </item>
  </channel>
</rss>

