<?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: K60 FTM0 overflow interrupt doesn't work in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263825#M8300</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i took your advice and inserted the isr in the vector table, but it doesn't work so far.&lt;/P&gt;&lt;P&gt;The PWM Signal runs blameless, but the ISR is never called. The LED should light up in the ISR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please take a look at my sources. Maybe you can find the mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Apr 2013 12:04:54 GMT</pubDate>
    <dc:creator>andreasfrüchtl</dc:creator>
    <dc:date>2013-04-15T12:04:54Z</dc:date>
    <item>
      <title>K60 FTM0 overflow interrupt doesn't work</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263821#M8296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is my first Project with a Freescale K60 uC&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've got a Problem with the Overflow Interrupt on FTM0. I want to jump in the ftm0_isr when the timer reaches the module value, but it doesn't.&lt;/P&gt;&lt;P&gt;Can anybody help me?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attached the main.c. Thanks in advance&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-337577"&gt;main.c.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 10:09:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263821#M8296</guid>
      <dc:creator>andreasfrüchtl</dc:creator>
      <dc:date>2013-04-12T10:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: K60 FTM0 overflow interrupt doesn't work</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263822#M8297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andreas,&lt;/P&gt;&lt;P&gt;I've attached "C" file that has code to initialize the FTM to generate an TOF interrupt.&lt;/P&gt;&lt;P&gt;Look for this snippet in the source file:&lt;/P&gt;&lt;P&gt;//DES 1=test, 0=default code.&amp;nbsp; Note: FTM defaults to a 16-bit counter...trying to generate TOF interrupt&lt;BR /&gt;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; unsigned int initialized;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _ftm1_enable_clock();&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //enable clock to FTM1 module&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM1_MODE = (FTM_MODE_WPDIS_MASK | FTM_MODE_FTMEN_MASK); //Write protection is disabled and all registers are available with no restrictions&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM1_CNTIN = FTM_CNTIN_INIT(0);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Initial Value of the FTM Counter&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM1_SC = (FTM_SC_TOF_MASK | FTM_SC_TOIE_MASK | FTM_SC_PS(6));&amp;nbsp; //FTM counter has overflowed,Enable TOF interrupts,Divide by 6=64 ...default count up mode&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM1_MOD = FTM_MOD_MOD(0xdcba);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Modulo value&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _int_install_isr(INT_FTM1, (void (_CODE_PTR_)(pointer))FTM1_ISR_TEST, NULL);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; initialized = _cortex_int_init(INT_FTM1, 7, TRUE);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; initialized = _cortex_int_enable(INT_FTM1);&amp;nbsp;&amp;nbsp;&amp;nbsp; //wants IRQ # not Vector #....a pain.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM1_PWMLOAD = 0x200; //DES test&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM1_SC |= ( FTM_SC_CLKS(1) ); //System clock(clock selection starts the counting process)&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 14:36:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263822#M8297</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2013-04-12T14:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: K60 FTM0 overflow interrupt doesn't work</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263823#M8298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;Thanks a lot. I forgot to set FTM_SC_TOF_MASK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I think there is another Problem. The Interrupt Service Routine has to be&amp;nbsp; set in the Interrupt table.&lt;/P&gt;&lt;P&gt;I have no idea how this is done. I've seen some example Projects, but this looks pretty confusing to me.&lt;/P&gt;&lt;P&gt;i don't want to replace the whole kinetis_sysinit.c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attached my kinetis_sysinit.c for you&lt;/P&gt;&lt;P&gt;I'll be back in the Laboratory on Wednesday. I hope i can figure it out then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a good Weekend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 21:10:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263823#M8298</guid>
      <dc:creator>andreasfrüchtl</dc:creator>
      <dc:date>2013-04-12T21:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: K60 FTM0 overflow interrupt doesn't work</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263824#M8299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andreas,&lt;/P&gt;&lt;P&gt;Good news and thanks for good weekend wises.&lt;/P&gt;&lt;P&gt;you are on the right track for the baremetal coding approach.&amp;nbsp; You do want to insert the address of the ISR into the vector table.&lt;/P&gt;&lt;P&gt;The Freescale SC code has the vector table as:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;#define&amp;nbsp; VECTOR_078&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; default_isr&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;// 0x0000_0138 78&amp;nbsp;&amp;nbsp;&amp;nbsp; 62&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM0 Single interrupt vector for all sources&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;#define&amp;nbsp; VECTOR_079&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; default_isr&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;// 0x0000_013C 79&amp;nbsp;&amp;nbsp;&amp;nbsp; 63&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM1 Single interrupt vector for all sources&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;#define&amp;nbsp; VECTOR_080&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; default_isr&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;// 0x0000_0140 80&amp;nbsp;&amp;nbsp;&amp;nbsp; 64&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FTM2 Single interrupt vector for all sources&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;The K60 product page has a Download link to the &lt;A href="http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=K60_100&amp;amp;nodeId=01624698C9DE2DDDAF&amp;amp;fpsp=1&amp;amp;tab=Design_Tools_Tab"&gt;SC code base for CW and IAR&lt;/A&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;Hope you have a godd weekend too.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;David&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 21:25:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263824#M8299</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2013-04-12T21:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: K60 FTM0 overflow interrupt doesn't work</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263825#M8300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i took your advice and inserted the isr in the vector table, but it doesn't work so far.&lt;/P&gt;&lt;P&gt;The PWM Signal runs blameless, but the ISR is never called. The LED should light up in the ISR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please take a look at my sources. Maybe you can find the mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Apr 2013 12:04:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263825#M8300</guid>
      <dc:creator>andreasfrüchtl</dc:creator>
      <dc:date>2013-04-15T12:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: K60 FTM0 overflow interrupt doesn't work</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263826#M8301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andreas,&lt;/P&gt;&lt;P&gt;You commented out a printf() in the void enable_irq(int irq) routine that caused the div calculation to be in error (it pulled the div = irq/32; into the if statement).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; color: #7f0055; font-size: 10pt;"&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; (irq &amp;gt; 91)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&lt;SPAN style="text-decoration: underline;"&gt;printf&lt;/SPAN&gt;("\nERR! Invalid IRQ value passed to enable &lt;SPAN style="text-decoration: underline;"&gt;irq&lt;/SPAN&gt; function!\n");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;/* Determine which of the NVICISERs corresponds to the &lt;SPAN style="text-decoration: underline;"&gt;irq&lt;/SPAN&gt; */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; div = irq/32;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing the code to:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; color: #7f0055; font-size: 10pt;"&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; (irq &amp;gt; 91)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; color: #7f0055; font-size: 10pt;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; asm&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #2a00ff; font-size: 10pt;"&gt;" &lt;SPAN style="text-decoration: underline;"&gt;nop&lt;/SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;); &lt;/SPAN&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;//DES Must have an instruction after the "if() statement or using {} to indicate no instruction. With &lt;SPAN style="text-decoration: underline;"&gt;printf&lt;/SPAN&gt; commented out &lt;SPAN style="text-decoration: underline;"&gt;div&lt;/SPAN&gt; was not calculated correctly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;OR (better solution)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;&lt;SPAN style="; color: #7f0055; font-size: 10pt;"&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; (irq &amp;gt; 91) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;//&lt;SPAN style="text-decoration: underline;"&gt;printf&lt;/SPAN&gt;("\nERR! Invalid IRQ value passed to enable &lt;SPAN style="text-decoration: underline;"&gt;irq&lt;/SPAN&gt; function!\n");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3f7f5f; font-size: 10pt;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;fixes the issue.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;I also changed how the LED_PORT toggle was operating by following:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;#define LED_PORT_T GPIOA_PTOR&amp;nbsp;&amp;nbsp;&amp;nbsp; //DES toggle port pin control&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;LED_PORT_T |= (1&amp;lt;&amp;lt;LED_GREEN);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;Regards,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;David&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Apr 2013 21:09:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263826#M8301</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2013-04-15T21:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: K60 FTM0 overflow interrupt doesn't work</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263827#M8302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh crap, what a bad mistake. my professor would kill me. I will try this tomorrow.Everything is going to be allright :smileywink:&lt;/P&gt;&lt;P&gt;Many thanks for your assistance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Apr 2013 22:05:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K60-FTM0-overflow-interrupt-doesn-t-work/m-p/263827#M8302</guid>
      <dc:creator>andreasfrüchtl</dc:creator>
      <dc:date>2013-04-15T22:05:16Z</dc:date>
    </item>
  </channel>
</rss>

