<?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 Analog to Digitial Convertor Multiple channel using MUX in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/Analog-to-Digitial-Convertor-Multiple-channel-using-MUX/m-p/210277#M5168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #51626f; font-size: 9pt;"&gt;We are attempting to read multiple channels, more than 2, using one of the A2D convertors on a K70 with MQX3.8. I have seen in another post that stated when using MQX this may require us to perform successive Open and Close channel operations. It doesn’t appear that MQX on the K70&amp;nbsp;supports the ability to Open more than two single ended channels or one differential channel at a time per A2D convertor.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #51626f; font-size: 9pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #51626f; font-size: 9pt;"&gt;Can someone confirm this?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Feb 2012 20:03:06 GMT</pubDate>
    <dc:creator>LANCO_M4</dc:creator>
    <dc:date>2012-02-25T20:03:06Z</dc:date>
    <item>
      <title>Analog to Digitial Convertor Multiple channel using MUX</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Analog-to-Digitial-Convertor-Multiple-channel-using-MUX/m-p/210277#M5168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #51626f; font-size: 9pt;"&gt;We are attempting to read multiple channels, more than 2, using one of the A2D convertors on a K70 with MQX3.8. I have seen in another post that stated when using MQX this may require us to perform successive Open and Close channel operations. It doesn’t appear that MQX on the K70&amp;nbsp;supports the ability to Open more than two single ended channels or one differential channel at a time per A2D convertor.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #51626f; font-size: 9pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #51626f; font-size: 9pt;"&gt;Can someone confirm this?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2012 20:03:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Analog-to-Digitial-Convertor-Multiple-channel-using-MUX/m-p/210277#M5168</guid>
      <dc:creator>LANCO_M4</dc:creator>
      <dc:date>2012-02-25T20:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Analog to Digitial Convertor Multiple channel using MUX</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Analog-to-Digitial-Convertor-Multiple-channel-using-MUX/m-p/210278#M5169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lanco_m4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you stated it's true for K70.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MartinK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Feb 2012 02:59:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Analog-to-Digitial-Convertor-Multiple-channel-using-MUX/m-p/210278#M5169</guid>
      <dc:creator>c0170</dc:creator>
      <dc:date>2012-02-26T02:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Analog to Digitial Convertor Multiple channel using MUX</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Analog-to-Digitial-Convertor-Multiple-channel-using-MUX/m-p/210279#M5170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lanco_m4,&lt;/P&gt;&lt;P&gt;You are correct for the Kinetis SAR ADC module.&amp;nbsp; Each module has two sample registers that can be configured to trigger simultaneously or delayed from one another using the PDB (Peripheral Delayed Block).&lt;/P&gt;&lt;P&gt;You can use a &lt;STRONG&gt;"static"&lt;/STRONG&gt; method setup the ADC modules to sample different pins but this limits you to the two samples per ADC module.&lt;/P&gt;&lt;P&gt;If you use the other features of Kinetis like the eDMA and the various methods that allow the peripheral to trigger one another, then a &lt;STRONG&gt;"dynamic"&lt;/STRONG&gt; method can be used:&lt;/P&gt;&lt;P&gt;ex: PIT timer used to trigger the eDMA to transfer ADC command to trigger the ADC sample.&amp;nbsp; When the ADC sample completes, it can trigger the eDMA to get the result from ADC module and move to SRAM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To summaries, if you have 2 or less samples per ADC module you want then a static approach may work.&amp;nbsp; If you have more than 2 samples per ADC module then you need to use a dynamic approach (fast approach) that allows the hardware to reconfigure your ADC for samples or use dynamic code to setup ADC modules (slower approach).&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>Mon, 27 Feb 2012 22:20:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Analog-to-Digitial-Convertor-Multiple-channel-using-MUX/m-p/210279#M5170</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2012-02-27T22:20:41Z</dc:date>
    </item>
  </channel>
</rss>

