<?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: ADC with MPC5748G in MPC5xxx</title>
    <link>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1251058#M17802</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi PerS,&lt;/P&gt;&lt;P&gt;Another Question Please&lt;/P&gt;&lt;P&gt;Why, in the example, is number 9 assigned as the ADC_Channel_Number when PB[4] corresponds to precision channel 0 in the ADC1?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;#define ADC_CHAN_NUM (9u) /* ADC1_P[0] corresponding to PB[4] */&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 24 Mar 2021 08:50:25 GMT</pubDate>
    <dc:creator>Elsa_24</dc:creator>
    <dc:date>2021-03-24T08:50:25Z</dc:date>
    <item>
      <title>ADC with MPC5748G</title>
      <link>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1249483#M17753</link>
      <description>Hi, I would like to know how to read for example the voltage across a pin using the ADC. I have already activated the PI[11] pin corresponding to Standard Channel 19 of the ADC0 and I would like to read the voltage across this pin. And the ADC component has already been added to the project Thanks</description>
      <pubDate>Mon, 22 Mar 2021 08:27:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1249483#M17753</guid>
      <dc:creator>Elsa_24</dc:creator>
      <dc:date>2021-03-22T08:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: ADC with MPC5748G</title>
      <link>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1249536#M17758</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;if using the SDK you can refer to e.g. "adc_swtrigger_mpc5748g" demo example to know how ADC driver can be used.&lt;/P&gt;
&lt;P&gt;BR, Petr&lt;/P&gt;</description>
      <pubDate>Mon, 22 Mar 2021 09:24:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1249536#M17758</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2021-03-22T09:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: ADC with MPC5748G</title>
      <link>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1249727#M17765</link>
      <description>&lt;P&gt;Hi PetrS,&lt;/P&gt;&lt;P&gt;Thanks for your Answer.&lt;/P&gt;&lt;P&gt;As you advised, I tried to understand the example&amp;nbsp;&lt;SPAN&gt;"adc_swtrigger_mpc5748g"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;As a small modification, I tried to display with the UART the value of the result on the Terminal. but I can't do it. I've been trying to figure out how to do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the part of the code that I modified:&lt;BR /&gt;I just added the "LINFLEXD_UART_DRV_SendData" But it doesn't show me anything on the Terminal&lt;/P&gt;&lt;P&gt;if (result &amp;gt; ADC_THRESHOLD)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;PINS_DRV_ClearPins(LED_PORT, (1 &amp;lt;&amp;lt; LED));&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LINFLEXD_UART_DRV_SendData(INST_LINFLEXD_UART1, result, 1u);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;PINS_DRV_SetPins(LED_PORT, (1 &amp;lt;&amp;lt; LED));&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LINFLEXD_UART_DRV_SendData(INST_LINFLEXD_UART1, result, 1u);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 Mar 2021 13:49:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1249727#M17765</guid>
      <dc:creator>Elsa_24</dc:creator>
      <dc:date>2021-03-22T13:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: ADC with MPC5748G</title>
      <link>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1250292#M17785</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;the "result" is integer variable and&amp;nbsp;&lt;SPAN&gt;LINFLEXD_UART_DRV_SendData expect char/string to send it through LINFlexD. You need to convert "result" to string&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;BR, Petr&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 09:22:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1250292#M17785</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2021-03-23T09:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: ADC with MPC5748G</title>
      <link>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1251058#M17802</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi PerS,&lt;/P&gt;&lt;P&gt;Another Question Please&lt;/P&gt;&lt;P&gt;Why, in the example, is number 9 assigned as the ADC_Channel_Number when PB[4] corresponds to precision channel 0 in the ADC1?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;#define ADC_CHAN_NUM (9u) /* ADC1_P[0] corresponding to PB[4] */&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 24 Mar 2021 08:50:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1251058#M17802</guid>
      <dc:creator>Elsa_24</dc:creator>
      <dc:date>2021-03-24T08:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: ADC with MPC5748G</title>
      <link>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1251955#M17819</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;see&amp;nbsp;Table 32-4. ADC channel mapping of the RM.&lt;/P&gt;
&lt;P&gt;ADC1_P[0] is mapped to the channel 9 of the ADC1&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PetrS_0-1616660993164.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/140629iBA99A28089D31FFF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PetrS_0-1616660993164.png" alt="PetrS_0-1616660993164.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR, Petr&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 08:30:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1251955#M17819</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2021-03-25T08:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: ADC with MPC5748G</title>
      <link>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1503995#M21817</link>
      <description>&lt;P&gt;Hello Elsa,&lt;/P&gt;&lt;P&gt;I am also trying to measure the supply voltage or battery voltage in MPC5748G using ADC,&lt;/P&gt;&lt;P&gt;Can you please help me out how did you configure the ADC and also the propcedure you followed?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 12:29:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/ADC-with-MPC5748G/m-p/1503995#M21817</guid>
      <dc:creator>SAchary11</dc:creator>
      <dc:date>2022-08-10T12:29:15Z</dc:date>
    </item>
  </channel>
</rss>

