<?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 LPC55S69 ADC channel 8 can't read any data in MCUXpresso General</title>
    <link>https://community.nxp.com/t5/MCUXpresso-General/LPC55S69-ADC-channel-8-can-t-read-any-data/m-p/1074517#M3644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , I would greatly appreciate your help !!!&lt;/P&gt;&lt;P&gt;I'm using the LPC55S69 development board ADC example .&lt;/P&gt;&lt;P&gt;I changed channel 0 to channel 8 and also configured pin P0_16 .&lt;/P&gt;&lt;P&gt;I connected 3.3V to channel 8 with the dupont line .&lt;/P&gt;&lt;P&gt;But I can't read any data .&lt;/P&gt;&lt;P&gt;I hope you can point out my mistake and correct the problem. Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eagan&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Best Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2020 09:28:43 GMT</pubDate>
    <dc:creator>eagan_yu</dc:creator>
    <dc:date>2020-06-09T09:28:43Z</dc:date>
    <item>
      <title>LPC55S69 ADC channel 8 can't read any data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/LPC55S69-ADC-channel-8-can-t-read-any-data/m-p/1074517#M3644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , I would greatly appreciate your help !!!&lt;/P&gt;&lt;P&gt;I'm using the LPC55S69 development board ADC example .&lt;/P&gt;&lt;P&gt;I changed channel 0 to channel 8 and also configured pin P0_16 .&lt;/P&gt;&lt;P&gt;I connected 3.3V to channel 8 with the dupont line .&lt;/P&gt;&lt;P&gt;But I can't read any data .&lt;/P&gt;&lt;P&gt;I hope you can point out my mistake and correct the problem. Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eagan&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Best Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2020 09:28:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/LPC55S69-ADC-channel-8-can-t-read-any-data/m-p/1074517#M3644</guid>
      <dc:creator>eagan_yu</dc:creator>
      <dc:date>2020-06-09T09:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 ADC channel 8 can't read any data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/LPC55S69-ADC-channel-8-can-t-read-any-data/m-p/1074518#M3645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Eagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you configure the channel to working with single-ended side B in the command? The PIO0_16 has the same channel but in the side B of the module, so the only you would need to modify from the example is to define the configuration for the new pin and modify the command to point to the B side.&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;  &lt;SPAN class="comment token"&gt;/* Set conversion CMD configuration. */&lt;/SPAN&gt;
    &lt;SPAN class="token function"&gt;LPADC_GetDefaultConvCommandConfig&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;mLpadcCommandConfigStruct&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    mLpadcCommandConfigStruct&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;channelNumber &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; DEMO_LPADC_USER_CHANNEL&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    mLpadcCommandConfigStruct&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sampleChannelMode &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; kLPADC_SampleChannelSingleEndSideB&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="token function"&gt;LPADC_SetConvCommandConfig&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;DEMO_LPADC_BASE&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; DEMO_LPADC_USER_CMDID&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;mLpadcCommandConfigStruct&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Alexis Andalon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2020 15:23:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/LPC55S69-ADC-channel-8-can-t-read-any-data/m-p/1074518#M3645</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2020-06-11T15:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 ADC channel 8 can't read any data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/LPC55S69-ADC-channel-8-can-t-read-any-data/m-p/1167029#M3975</link>
      <description>&lt;P class="tgt"&gt;&lt;SPAN class="tgt highlight"&gt;Hi &lt;SPAN class="UserName lia-user-name lia-user-rank-NXP-TechSupport lia-component-message-view-widget-author-username"&gt;&lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/167559" target="_self"&gt;&lt;SPAN class=""&gt;&amp;nbsp;Alexis_A&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="tgt"&gt;&lt;SPAN class="tgt highlight"&gt;Thank you for your reply&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="tgt"&gt;&lt;SPAN class="tgt"&gt;My configuration is exactly what you said&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="tgt"&gt;&lt;SPAN class="tgt"&gt;Including the pin configuration to Analog&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="tgt"&gt;&lt;SPAN class="tgt"&gt;But I still can't read the data. It's always zero&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2020 01:52:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/LPC55S69-ADC-channel-8-can-t-read-any-data/m-p/1167029#M3975</guid>
      <dc:creator>eagan_yu</dc:creator>
      <dc:date>2020-10-14T01:52:21Z</dc:date>
    </item>
  </channel>
</rss>

