<?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: LPTMR0 activation on FRDM-KL03Z board in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689736#M42478</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Beau&lt;/P&gt;&lt;P&gt;If you are still having problem with using the 32kHz crystal (and that is what you finally need), check that you have enabled it in the OSC_CR register.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the only two commands needed to start it and switch it through to OSCERCLK:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier,monospace; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MCG_C2 = (MCG_C2_EREFS | MCG_C2_IRCS);&amp;nbsp;&amp;nbsp; // select oscillator as external clock source&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier,monospace; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OSC0_CR = (OSC_CR_ERCLKEN | OSC_CR_EREFSTEN); // enable the oscillator and allow it to continue oscillating in stop mode&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Aug 2017 22:06:41 GMT</pubDate>
    <dc:creator>mjbcswitzerland</dc:creator>
    <dc:date>2017-08-03T22:06:41Z</dc:date>
    <item>
      <title>LPTMR0 activation on FRDM-KL03Z board</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689729#M42471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I have been trying for a very long time to try and get the Low Power Timer going on the FRDM-KL03Z board and have had no luck. I have been trying to find where the 32k crystal is being output to but I can't see the signal nor can I measure continuity to the pin. As EXTAL is not on the developement board, I would assume it would output to the RTC_CLK_IN pin (PTA5) My code is seen below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;////////////////////Port Set up/////////////////////////////&lt;BR /&gt; PORT_BWR_PCR_MUX(PORTA, 5, 0b001); //Set the Alt1 muxing on Port A, pin 5 for RTC_CLK_IN (SiT1532_OUT) (32 kHz clock)&lt;BR /&gt; GPIO_SET_PDDR(GPIOA, 0U&amp;lt;&amp;lt;5); //Set PORTA pin 5 to input&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;///////////////////////////////////////////////LPTMR initialization///////////////////////////////////////////////////&lt;/P&gt;&lt;P&gt;SIM_BWR_SCGC5_LPTMR(SIM_BASE_PTR, 1); //enabling software access to low power timer module&lt;BR /&gt; SIM_BWR_SOPT1_OSC32KSEL(SIM_BASE_PTR,0b00); //Selects the clock source (ERCLK32K) for LPTMR (00), RTC_CLKIN (10)&lt;BR /&gt; SIM_BWR_SOPT1_OSC32KOUT(SIM_BASE_PTR,0b01); // (01)Set the clock ERCLK32K output on pin13&lt;BR /&gt; SIM_BWR_SOPT2_CLKOUTSEL(SIM_BASE_PTR,0b110); // Clock to output on the CLKOUT pin (110) OCERCLK&lt;/P&gt;&lt;P&gt;MCG_BWR_C2_EREFS0(MCG, 1); //Selects the source for the external reference clock to be external clock.&lt;BR /&gt; MCG_BWR_C2_IRCS(MCG,1); //Selects LIRC to 8Mhz&lt;BR /&gt; OSC_BWR_CR_ERCLKEN(OSC, 1); //Enables the external reference clock (OSCERCLK)&lt;BR /&gt;&lt;BR /&gt; MCG_BWR_C1_CLKS(MCG, 0b10); //Selects external clock as the main clock source. This is EXT mode&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;//Set-up the LPTMR&lt;BR /&gt; //Set the LPTMR PSR Register&lt;BR /&gt; LPTMR_BWR_CSR_TEN(LPTMR0, 0); //LPTMR is disabled&lt;BR /&gt; LPTMR_BWR_PSR_PCS(LPTMR0, 0b10); //Sets LPTMR clock to MCGIRCLK (00), LPO Timer (01), ERCLK32K (10)&lt;BR /&gt; LPTMR_BWR_PSR_PBYP(LPTMR0, 0); //(1) LPTMR prescale is disabled&lt;BR /&gt; LPTMR_BWR_PSR_PRESCALE(LPTMR0, 0b0000); //Sets the prescale to divide by 2&lt;/P&gt;&lt;P&gt;// Set the LPTMR Working Mode for Time Counter&lt;BR /&gt; LPTMR_BWR_CSR_TMS(LPTMR0, 0); // Sets the mode to Time counter (0) or Pulse counter (1)&lt;BR /&gt; LPTMR_BWR_CSR_TFC(LPTMR0, 1); // Set the CNR to reset on overflow (1), reset when TCF is set (0)&lt;/P&gt;&lt;P&gt;freq=4096;&lt;BR /&gt; tick_count=49151; //3s with freq=32768, ps=2&lt;/P&gt;&lt;P&gt;LPTMR_BWR_CMR_COMPARE(LPTMR0, tick_count); //Sets the compare value that will trigger TCF to be set when CNR matches CMR&lt;/P&gt;&lt;P&gt;//Initialize the LPTMR interrupt&lt;BR /&gt; LPTMR_BWR_CSR_TIE(LPTMR0, 1); //Enable the timer interrupt (1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//////////////////////////////////////////////////////Interrupt Routine////////////////////////////////////////////////////////&lt;/P&gt;&lt;P&gt;void LPTMR0_IRQHandler(void)&lt;BR /&gt;{&lt;BR /&gt; LPTMR_BWR_CSR_TCF(LPTMR0, 1); //Clear the interrupt flag&lt;BR /&gt; GPIO_WR_PTOR(GPIOB, 1U&amp;lt;&amp;lt;2); //Toggle pin2 on PortB to turn on an LED RED&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated, thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Beau&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 18:04:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689729#M42471</guid>
      <dc:creator>beaurogers</dc:creator>
      <dc:date>2017-07-31T18:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: LPTMR0 activation on FRDM-KL03Z board</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689730#M42472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Beau&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to follow what you are doing but am not really sure that I understand what is needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, the FRDM-KL03Z has a 32kHz crystal on EXTAL which can be used to clock the RTC and the LPTMR so I don't understand why you write that EXTAL (pin 5) is not on the development board (?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking at the code I think that you are selecting the RTC_CLKIN as clock for RTC and LPTMR use but do you actually have a separate clock on this input?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see that you choose OSCERCLK to be output on CLKOUT but you haven't configured PTA12 to the CLKOUT function, which means that it won't be output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What clock are you using to clock the processor itself?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although it probably won't help at the moment I have attached a binary file for the FRDM-KL03Z which runs the core from the HIRC and the LPTMR from the 32kHz OSCERCLK - and drives the clock to the PTA12 (CLKOUT) output. It toggles the red LED at about 3ms rate from the LPTMR interrupt (and the green LED at 2.5Hz).&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have made a very quick and dirty video showing the code being stepped in the uTasker simulator in case you do see anything relevant in the code snippets involved: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fyoutu.be%2FqRzbwW4-QQg" rel="nofollow" target="_blank"&gt;https://youtu.be/qRzbwW4-QQg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, specify the exact details so that I can repeat for the exact setup that you need and then you will be able to see any deviation between the operating code and yours.&lt;BR /&gt;[1: What clock source, core speed, bus clock speed and flash clock speed are needed]&lt;BR /&gt;[2: What LPTMR source]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 23:26:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689730#M42472</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2017-07-31T23:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: LPTMR0 activation on FRDM-KL03Z board</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689731#M42473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apologies for the poor description as my question was written in the midst of frustration. My end goal is to use the 32 kHz crystal on the FRDM-KL0Z3 to toggle the LPTMR and utilize the interrupt routine. I seem to have been mixing up OSC32KCLK with CLKOUT, but this image below is essentially what I am trying to achieve.&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/6431i8777B09ED4171D7C/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;I have been trying to get the CLKOUT function executed primarily for trouble shooting purposes but I still am not seeing a signal. There is no mention on EXTAL or any description of how to setup requirements in the FRDM-KLZ3 manual so I was not too sure where or if I was getting a signal as I could not measure it on an oscilloscope.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically I am trying to use the 32kHz OSC as the source for my LPTMR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2017 12:45:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689731#M42473</guid>
      <dc:creator>beaurogers</dc:creator>
      <dc:date>2017-08-01T12:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: LPTMR0 activation on FRDM-KL03Z board</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689732#M42474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Beau&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Read this for some clocking details: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis%2FKL_RTC.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis/KL_RTC.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact you are configuring the way that I showed in the video, therefore you should be able to check the code used to see what is missing in yours.&lt;BR /&gt;I suspect a couple of details that you haven't done:&lt;BR /&gt;1. Enable the external reference clock in OSC_CR&lt;BR /&gt;2. Configured the pin Mux for PTA12 for CLKOUT operation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2017 16:18:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689732#M42474</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2017-08-01T16:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: LPTMR0 activation on FRDM-KL03Z board</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689733#M42475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark, you are in fact correct but it turns out that my oscillator clock was simply not working. After configuring the LPTMR to RTC_CLKIN and running a function generator at 32 768 Hz, I began seeing my output. Thank you for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Beau&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2017 17:38:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689733#M42475</guid>
      <dc:creator>beaurogers</dc:creator>
      <dc:date>2017-08-01T17:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: LPTMR0 activation on FRDM-KL03Z board</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689734#M42476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Beau,&lt;/P&gt;&lt;P&gt;There is a 32.768kHz crystal on FRDM-KL03Z. But the RTC_CLKIN is floating. &lt;BR /&gt;I think you can select &lt;STRONG&gt;OSCERCLK&lt;/STRONG&gt; as the clock source of LPTMR:&lt;/P&gt;&lt;P&gt;LPTMR_BWR_PSR_PCS(LPTMR0, &lt;STRONG&gt;0b11&lt;/STRONG&gt;); //Sets LPTMR clock to MCGIRCLK (00), LPO Timer (01), ERCLK32K (10),OSCERCLK (11)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Figure 5-1. Clocking diagram.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/10364iE32D5CB5B7A60C95/image-size/large?v=v2&amp;amp;px=999" role="button" title="Figure 5-1. Clocking diagram.png" alt="Figure 5-1. Clocking diagram.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="5.7.5 LPTMR clocking.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/10409i1D29DD7F043FC7D7/image-size/large?v=v2&amp;amp;px=999" role="button" title="5.7.5 LPTMR clocking.png" alt="5.7.5 LPTMR clocking.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The PTA12 can be configured as CLKOUT function and then output &lt;STRONG&gt;OSCERCLK&lt;/STRONG&gt; clock.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="PTA12 CLKOUT.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/10508i09D2EEF6BB79159E/image-size/large?v=v2&amp;amp;px=999" role="button" title="PTA12 CLKOUT.png" alt="PTA12 CLKOUT.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="SIM_SOPT2[CLKOUTSEL].png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/10545iCF2B30D6376AE992/image-size/large?v=v2&amp;amp;px=999" role="button" title="SIM_SOPT2[CLKOUTSEL].png" alt="SIM_SOPT2[CLKOUTSEL].png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Robin&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&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, 03 Aug 2017 07:53:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689734#M42476</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2017-08-03T07:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: LPTMR0 activation on FRDM-KL03Z board</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689735#M42477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did do that as well and I configured the CLKOUT pin to output the OSC but I consistently saw nothing. I measured the 32 kHz crystal directly and could see a voltage but no signal so that indicates to me there was no signal coming from it. I don't know if there is something else that needs to be done to activate the crystal but I did not see any kind of signal. However, I very quickly saw results when I inputted a 32 678 Hz input from a signal generator.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Beau&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 19:58:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689735#M42477</guid>
      <dc:creator>beaurogers</dc:creator>
      <dc:date>2017-08-03T19:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: LPTMR0 activation on FRDM-KL03Z board</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689736#M42478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Beau&lt;/P&gt;&lt;P&gt;If you are still having problem with using the 32kHz crystal (and that is what you finally need), check that you have enabled it in the OSC_CR register.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the only two commands needed to start it and switch it through to OSCERCLK:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier,monospace; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MCG_C2 = (MCG_C2_EREFS | MCG_C2_IRCS);&amp;nbsp;&amp;nbsp; // select oscillator as external clock source&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier,monospace; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OSC0_CR = (OSC_CR_ERCLKEN | OSC_CR_EREFSTEN); // enable the oscillator and allow it to continue oscillating in stop mode&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 22:06:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/LPTMR0-activation-on-FRDM-KL03Z-board/m-p/689736#M42478</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2017-08-03T22:06:41Z</dc:date>
    </item>
  </channel>
</rss>

