<?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: Getting SCT to trigger ADC in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748883#M30156</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="288015" data-username="gregwilson-lindberg" href="https://community.nxp.com/people/gregwilson-lindberg"&gt;Greg Wilson-Lindberg&lt;/A&gt;,&lt;/P&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;SPAN style="font-family: 'Microsoft YaHei', STXihei; 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="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;SPAN style="font-family: 'Microsoft YaHei', STXihei; background-color: #ffffff;"&gt;for the opportunity to serve you.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if you can tell me which type of MCU you used.&lt;/P&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;TIC&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;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Nov 2017 01:34:46 GMT</pubDate>
    <dc:creator>jeremyzhou</dc:creator>
    <dc:date>2017-11-30T01:34:46Z</dc:date>
    <item>
      <title>Getting SCT to trigger ADC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748882#M30155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to use SCT2 to trigger the ADC and am having no luck. Here is the initialization code that I'm using:&lt;/P&gt;&lt;P&gt;// LPC_SCT2-&amp;gt;CONFIG |= 0;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// 16-bit timer&lt;BR /&gt; LPC_SCT2-&amp;gt;CONFIG |= (1 &amp;lt;&amp;lt; 18);&amp;nbsp; &amp;nbsp; &amp;nbsp;// 16-bit timer, auto limit high&lt;BR /&gt; LPC_SCT2-&amp;gt;CTRL_H |= (64 &amp;lt;&amp;lt; 5);&amp;nbsp; &amp;nbsp; &amp;nbsp;// Pre-scaler &amp;amp; halt H timer&lt;BR /&gt;// LPC_SCT2-&amp;gt;LIMIT_H |= (1 &amp;lt;&amp;lt; 0);&amp;nbsp; &amp;nbsp; // Event 0 limit high&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LPC_SCT2-&amp;gt;MATCHREL[0].H = 5000 - 1;&amp;nbsp; &amp;nbsp; // match 0 @ 200 Hz = 5 msec, toggle will make it 100 Hz, 10ms&lt;BR /&gt; LPC_SCT2-&amp;gt;MATCH[0].H = 5000 - 1;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// match 0 @ 200 Hz = 5 msec&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LPC_SCT2-&amp;gt;EVENT[0].STATE = 0xFFFF;&amp;nbsp; &amp;nbsp; // event 0 happens in all states&lt;BR /&gt; LPC_SCT2-&amp;gt;EVENT[0].CTRL = (0 &amp;lt;&amp;lt; 0) |&amp;nbsp; &amp;nbsp; &amp;nbsp;// Match 0&lt;BR /&gt;&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; (1 &amp;lt;&amp;lt; 4) |&amp;nbsp; &amp;nbsp; &amp;nbsp;// High counter&lt;BR /&gt;&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; (1 &amp;lt;&amp;lt; 12);&amp;nbsp; &amp;nbsp; // match condition only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LPC_SCT2-&amp;gt;EVEN = (1 &amp;lt;&amp;lt; 0); // enable event 0 interrupt&lt;BR /&gt; NVIC_EnableIRQ(SCT2_IRQn);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LPC_SCT2-&amp;gt;OUT[3].SET = (1 &amp;lt;&amp;lt; 0);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// event 0 will set SCT2_OUT3&lt;BR /&gt; LPC_SCT2-&amp;gt;OUT[3].CLR = (1 &amp;lt;&amp;lt; 0);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// event 0 will clear SCT2_OUT3&lt;BR /&gt; LPC_SCT2-&amp;gt;RES = (3 &amp;lt;&amp;lt; 6);&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;// output 3 toggles on conflict&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LPC_SCT2-&amp;gt;OUT[0].SET = (1 &amp;lt;&amp;lt; 0);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// event 0 will set SCT2_OUT0&lt;BR /&gt; LPC_SCT2-&amp;gt;OUT[0].CLR = (1 &amp;lt;&amp;lt; 0);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// event 0 will clear SCT2_OUT0&lt;BR /&gt; LPC_SCT2-&amp;gt;RES = (3 &amp;lt;&amp;lt; 6) | (3 &amp;lt;&amp;lt; 0);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // output 0 toggles on conflict&lt;BR /&gt; // Output SCT_OUT0 on PIO2_3, pin 76&lt;BR /&gt; /* SCT1_OUT0, SCT1_OUT1, SCT1_OUT2, SCT2_OUT0 */&lt;BR /&gt; LPC_SWM-&amp;gt;PINASSIGN[8] = 0x43FFFFFFUL;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LPC_SCT2-&amp;gt;CTRL_H &amp;amp;= ~SCT_CTRL_HALT_L; // un-halt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// after everything is setup, enable the ADC&lt;BR /&gt; Chip_ADC_SetupSequencer(LPC_ADC0, ADC_SEQA_IDX,&lt;BR /&gt;&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; (ADC_SEQ_CTRL_CHANSEL(BOARD_ADC_TEMP_INT) |&lt;BR /&gt;&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;ADC_SEQ_CTRL_CHANSEL(BOARD_ADC_TEMP_TOP) |&lt;BR /&gt;&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;ADC_SEQ_CTRL_CHANSEL(BOARD_ADC_36V_POWERSUPPLY) |&lt;BR /&gt;&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;ADC_SEQ_CTRL_CHANSEL(BOARD_ADC_36V_BATTERY) |&lt;BR /&gt;&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;ADC_SEQ_CTRL_CHANSEL(BOARD_ADC_MOTOR_CURRENT) |&lt;BR /&gt;&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;ADC0_SEQ_CTRL_HWTRIG_SCT2_OUT3 |&amp;nbsp; &amp;nbsp;// User SCT2 OUT[3] for trigger&lt;BR /&gt;&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;ADC_SEQ_CTRL_MODE_EOS |&lt;BR /&gt;&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;ADC_SEQ_CTRL_SEQ_ENA));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm getting the interrupt for Event[0] but it seems that OUT[3] is not toggling. I can't look at OUT[3], the SWM only allows SCT2_OUT[0-2] to go to pins, and the ADC only allows SCT2_OUT[3-4] to trigger, so I set up OUT[0] to operate in the same way and I don't get an output for OUT[0].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm obviously missing something, if any one can help me out I would appreciate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 17:52:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748882#M30155</guid>
      <dc:creator>gregwilson-lind</dc:creator>
      <dc:date>2017-11-29T17:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Getting SCT to trigger ADC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748883#M30156</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="288015" data-username="gregwilson-lindberg" href="https://community.nxp.com/people/gregwilson-lindberg"&gt;Greg Wilson-Lindberg&lt;/A&gt;,&lt;/P&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;SPAN style="font-family: 'Microsoft YaHei', STXihei; 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="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;SPAN style="font-family: 'Microsoft YaHei', STXihei; background-color: #ffffff;"&gt;for the opportunity to serve you.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if you can tell me which type of MCU you used.&lt;/P&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;TIC&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;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2017 01:34:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748883#M30156</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2017-11-30T01:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getting SCT to trigger ADC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748884#M30157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;I'm sorry, it's running on an LPC1519.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greg Wilson-Lindberg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Principal Firmware Engineer | Sakura Finetek USA, Inc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1750 W 214th Street | Torrance, CA 90501 | U.S.A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T: +1 310 783 5075&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F: +1 310 618 6902 | E: gwilson@sakuraus.com&amp;lt;mailto:gwilson@sakuraus.com&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="www.sakuraus.com&amp;lt;http://www.sakuraus.com&amp;gt;" target="test_blank"&gt;www.sakuraus.com&amp;lt;http://www.sakuraus.com&amp;gt;&lt;/A&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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2017 16:15:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748884#M30157</guid>
      <dc:creator>gregwilson-lind</dc:creator>
      <dc:date>2017-11-30T16:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Getting SCT to trigger ADC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748885#M30158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="288015" data-username="gregwilson-lindberg" href="https://community.nxp.com/people/gregwilson-lindberg"&gt;Greg Wilson-Lindberg&lt;/A&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;After have a brief of review, I don't find any obvious errors.&lt;/P&gt;&lt;P&gt;So I'd highly recommend you to assign the SCT2_OUT3 to PIO0_6, then you can display the SCT2_OUT3 in OSC.&lt;/P&gt;&lt;P&gt;It's helpful to figure out the root cause of the issue.&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/48312i70E6C0A51EF4F214/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;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;DIV style="white-space: pre-wrap; text-align: left; line-height: 1.75; font-size: 14px;"&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;TIC&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;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 06:30:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-SCT-to-trigger-ADC/m-p/748885#M30158</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2017-12-01T06:30:26Z</dc:date>
    </item>
  </channel>
</rss>

