<?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 fast ADC conversion for more than one channel in Vybrid Processors</title>
    <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348911#M3497</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Rene Kolarik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to continue the discussion of thread 329507. We are looking for a fast sample conversion on the internal ADC for 8 channels (for the history of this problem please see threads 317871 and 328250).&amp;nbsp; Previous implementations using LWADC were either very slow&lt;/P&gt;&lt;P&gt;(450 us) or they did not give 8 different samples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So we implemented a solution along the description in thread 329507 which is fast and gives different samples. But the debugger shows all kinds of strange behavior as soon as more than one channel is converted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the question is: is MQX somehow affected when more channels are converted ? If yes, can you think of another way of implementation ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our ISR is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;void iADC_ISR (void * adc_ch)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// get last sample&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ADC_MemMapPtr adc_ptr = adc_base[current_conv_ch];&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;uint32_t temp = adc_ptr-&amp;gt;R1;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;temp = temp &amp;amp; ADC_CDR_CDATA_MASK;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;g_iADC0_values[current_conv_ch] = (float)(temp);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;// start next conversion&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;current_conv_ch = (current_conv_ch + 1) % noChannels;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;if (current_conv_ch == 0)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;// stop sampling&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;adc_ptr = adc_base[current_conv_ch];&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;uint_32 channel = ADC_CHANNEL(inputs[current_conv_ch]);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;adc_base[current_conv_ch]-&amp;gt;HC1 = channel | (1 &amp;lt;&amp;lt; ADC_HC1_AIEN1_SHIFT);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using the twrvf65gs10 BSP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Sep 2014 09:31:00 GMT</pubDate>
    <dc:creator>heinzroitner</dc:creator>
    <dc:date>2014-09-26T09:31:00Z</dc:date>
    <item>
      <title>fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348911#M3497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Rene Kolarik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to continue the discussion of thread 329507. We are looking for a fast sample conversion on the internal ADC for 8 channels (for the history of this problem please see threads 317871 and 328250).&amp;nbsp; Previous implementations using LWADC were either very slow&lt;/P&gt;&lt;P&gt;(450 us) or they did not give 8 different samples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So we implemented a solution along the description in thread 329507 which is fast and gives different samples. But the debugger shows all kinds of strange behavior as soon as more than one channel is converted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the question is: is MQX somehow affected when more channels are converted ? If yes, can you think of another way of implementation ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our ISR is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;void iADC_ISR (void * adc_ch)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// get last sample&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ADC_MemMapPtr adc_ptr = adc_base[current_conv_ch];&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;uint32_t temp = adc_ptr-&amp;gt;R1;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;temp = temp &amp;amp; ADC_CDR_CDATA_MASK;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;g_iADC0_values[current_conv_ch] = (float)(temp);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;// start next conversion&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;current_conv_ch = (current_conv_ch + 1) % noChannels;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;if (current_conv_ch == 0)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;// stop sampling&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;adc_ptr = adc_base[current_conv_ch];&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;uint_32 channel = ADC_CHANNEL(inputs[current_conv_ch]);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;adc_base[current_conv_ch]-&amp;gt;HC1 = channel | (1 &amp;lt;&amp;lt; ADC_HC1_AIEN1_SHIFT);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN lang="DE"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using the twrvf65gs10 BSP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2014 09:31:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348911#M3497</guid>
      <dc:creator>heinzroitner</dc:creator>
      <dc:date>2014-09-26T09:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348912#M3498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will check this with MQX team. There is a section in Vybrid Reference Manual - 37.8.5.6 "Conversion Time Examples" - you can check your time constraints there. If it meets your needs, then there will be probably bottleneck in the MQX. I'll be back as soon as I have more info from MQX team.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 13:51:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348912#M3498</guid>
      <dc:creator>rendy</dc:creator>
      <dc:date>2014-09-30T13:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348913#M3499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the time between ISRs (i.e time needed for one channel conversion) is 8 us. High speed conversion is enabled. So this looks OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One type of strange debugger behavior is the overwrite of a certain variable with floating numbers ending in ..E-42. Can you make sense of this? Somehow this must sneak in from the interrrupt ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 08:49:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348913#M3499</guid>
      <dc:creator>heinzroitner</dc:creator>
      <dc:date>2014-10-01T08:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348914#M3500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, first idea - why do you use floats in interrupt handler? Is it really needed? Can it be the source of the problems?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 09:43:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348914#M3500</guid>
      <dc:creator>rendy</dc:creator>
      <dc:date>2014-10-01T09:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348915#M3501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've just wrote a post about floats below (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;Oct 1, 2014 11:43 AM). Is it possible for you to defer float processing out of the interrupt context? Aren't there problems with saving of float registers?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 09:46:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348915#M3501</guid>
      <dc:creator>rendy</dc:creator>
      <dc:date>2014-10-01T09:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348916#M3502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK thanks this is an error in the ISR above. It looks better now after a few runs.&lt;/P&gt;&lt;P&gt;But I have to test it more and in the full program version. I'll tell you then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 10:21:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348916#M3502</guid>
      <dc:creator>heinzroitner</dc:creator>
      <dc:date>2014-10-01T10:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348917#M3503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rene,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, all the problems were caused by the premature casting of ADC-values to 'float' in the ISR. This gave us much pain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thank you for your help and hope you can assist us next time when we are stuck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Oct 2014 11:22:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348917#M3503</guid>
      <dc:creator>heinzroitner</dc:creator>
      <dc:date>2014-10-02T11:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348918#M3504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm glad I could help you, just mark my answer as 'Correct' please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 09:20:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348918#M3504</guid>
      <dc:creator>rendy</dc:creator>
      <dc:date>2014-10-03T09:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: fast ADC conversion for more than one channel</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348919#M3505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rene,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you also have an explanation what happened here? This would be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Heinz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 10:49:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/fast-ADC-conversion-for-more-than-one-channel/m-p/348919#M3505</guid>
      <dc:creator>heinzroitner</dc:creator>
      <dc:date>2014-10-03T10:49:38Z</dc:date>
    </item>
  </channel>
</rss>

