<?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>S32KのトピックRe: Adc_example_S32K396 missing port to sample</title>
    <link>https://community.nxp.com/t5/S32K/Adc-example-S32K396-missing-port-to-sample/m-p/2119636#M50085</link>
    <description>&lt;P&gt;Thank you for your interest in our products and for contributing to our community.&lt;/P&gt;
&lt;P&gt;In ADC examples, the &lt;EM&gt;Pins Tool&lt;/EM&gt; is disabled because provided examples do not use it (they use internal references).&lt;/P&gt;
&lt;P&gt;If you want to configure other pins, please follow steps in the following post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/S32K/How-to-do-ADC-projects-in-S32K3x4/td-p/2104444" target="_blank" rel="noopener"&gt;https://community.nxp.com/t5/S32K/How-to-do-ADC-projects-in-S32K3x4/td-p/2104444&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The steps will be similar for S32K396 using MCAL example version.&lt;/P&gt;
&lt;P&gt;I hope this information is helpful.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jun 2025 19:23:58 GMT</pubDate>
    <dc:creator>_Leo_</dc:creator>
    <dc:date>2025-06-19T19:23:58Z</dc:date>
    <item>
      <title>Adc_example_S32K396 missing port to sample</title>
      <link>https://community.nxp.com/t5/S32K/Adc-example-S32K396-missing-port-to-sample/m-p/2119177#M50065</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I created a project from example Adc_example_S32K396 but when I open the config tool to Update Code, there is an error because there are no pins assigned. I'm using S32DS.3.5.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="s32k3_newbie_0-1750317748558.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/343696i2BE77DEF7F3C352F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="s32k3_newbie_0-1750317748558.png" alt="s32k3_newbie_0-1750317748558.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 07:29:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Adc-example-S32K396-missing-port-to-sample/m-p/2119177#M50065</guid>
      <dc:creator>s32k3_newbie</dc:creator>
      <dc:date>2025-06-19T07:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Adc_example_S32K396 missing port to sample</title>
      <link>https://community.nxp.com/t5/S32K/Adc-example-S32K396-missing-port-to-sample/m-p/2119636#M50085</link>
      <description>&lt;P&gt;Thank you for your interest in our products and for contributing to our community.&lt;/P&gt;
&lt;P&gt;In ADC examples, the &lt;EM&gt;Pins Tool&lt;/EM&gt; is disabled because provided examples do not use it (they use internal references).&lt;/P&gt;
&lt;P&gt;If you want to configure other pins, please follow steps in the following post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/S32K/How-to-do-ADC-projects-in-S32K3x4/td-p/2104444" target="_blank" rel="noopener"&gt;https://community.nxp.com/t5/S32K/How-to-do-ADC-projects-in-S32K3x4/td-p/2104444&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The steps will be similar for S32K396 using MCAL example version.&lt;/P&gt;
&lt;P&gt;I hope this information is helpful.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 19:23:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Adc-example-S32K396-missing-port-to-sample/m-p/2119636#M50085</guid>
      <dc:creator>_Leo_</dc:creator>
      <dc:date>2025-06-19T19:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adc_example_S32K396 missing port to sample</title>
      <link>https://community.nxp.com/t5/S32K/Adc-example-S32K396-missing-port-to-sample/m-p/2121167#M50138</link>
      <description>&lt;P&gt;Hi Leo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply. I added a new port. I was able to build the sample project. However, I still did not use my added port because I want to know first if the Adc_example_S32K396 project works. The bStatus in the main.c code is always false. Could you please confirm if this sample project works as expected? Thanks!&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;            if ((ResultBuffer[0u] != AdcReadGroupResult[0u]) || \
                (ResultBuffer[1u] != AdcReadGroupResult[1u]) || \
                (ResultBuffer[2u] != RESULT_BUFF_VAL) || \
                (AdcReadGroupResult[2u] != ADC_RESULT_BUFF_VAL) || \
                (ADC_TOLERANCE(ResultBuffer[0u], ADC_BANDGAP)) || \
                (ADC_TOLERANCE(ResultBuffer[1u], ADC_VREFH)) \
                )
            {
                bStatus = FALSE;
                break;
            }&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;        if ((0u != FifoResult[4u]) || ADC_TOLERANCE(BctuCtrlModeResult, ADC_BANDGAP) || \
            (ADC_TOLERANCE(FifoResult[0u], ADC_BANDGAP)) || \
            (ADC_TOLERANCE(FifoResult[1u], ADC_BANDGAP)) || \
            (ADC_TOLERANCE(FifoResult[2u], ADC_BANDGAP)) || \
            (ADC_TOLERANCE(FifoResult[3u], ADC_VREFH)) \
            )
        {
            bStatus = FALSE;
        }&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="s32k3_newbie_0-1750660328923.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/344132i0A9E8922213B2642/image-size/medium?v=v2&amp;amp;px=400" role="button" title="s32k3_newbie_0-1750660328923.png" alt="s32k3_newbie_0-1750660328923.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 06:33:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Adc-example-S32K396-missing-port-to-sample/m-p/2121167#M50138</guid>
      <dc:creator>s32k3_newbie</dc:creator>
      <dc:date>2025-06-23T06:33:47Z</dc:date>
    </item>
  </channel>
</rss>

