<?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のトピックUnable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
    <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486203#M16248</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;got some issue while generating processor expert code for pin configuration for&amp;nbsp; ADC0 in pin mux&lt;/P&gt;&lt;P&gt;step i have used is :&amp;nbsp;&lt;/P&gt;&lt;P&gt;1-&amp;gt;opened pin mux -&amp;gt;selected Channel 0 PTA0 as input.&lt;/P&gt;&lt;P&gt;2-&amp;gt; cliicked on project tab --&amp;gt; clicked on generate processor expert code&amp;nbsp;&lt;/P&gt;&lt;P&gt;issue -&amp;gt; generated code not present in pinmux.c file.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Jul 2022 11:47:11 GMT</pubDate>
    <dc:creator>dhirajtarole</dc:creator>
    <dc:date>2022-07-07T11:47:11Z</dc:date>
    <item>
      <title>Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486203#M16248</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;got some issue while generating processor expert code for pin configuration for&amp;nbsp; ADC0 in pin mux&lt;/P&gt;&lt;P&gt;step i have used is :&amp;nbsp;&lt;/P&gt;&lt;P&gt;1-&amp;gt;opened pin mux -&amp;gt;selected Channel 0 PTA0 as input.&lt;/P&gt;&lt;P&gt;2-&amp;gt; cliicked on project tab --&amp;gt; clicked on generate processor expert code&amp;nbsp;&lt;/P&gt;&lt;P&gt;issue -&amp;gt; generated code not present in pinmux.c file.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 11:47:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486203#M16248</guid>
      <dc:creator>dhirajtarole</dc:creator>
      <dc:date>2022-07-07T11:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486532#M16256</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@dhirantarole" target="_blank"&gt;Hi@dhirajtarole&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;the default setting of the ADC0-&amp;gt;Channel0 is to select PTA0 as input, so the pin_mux.c may not be changed.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 03:16:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486532#M16256</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2022-07-08T03:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486543#M16258</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;but if we select multiple pin also ,the code will not generate in pin_mux.c file.&lt;/P&gt;&lt;P&gt;lets assume i have selected multiple pin like&amp;nbsp;&lt;/P&gt;&lt;P&gt;ADC0-&amp;gt; PTA1/PTA6/PTA7/PTB0/PTB1/PTB2/PTB3... INPUT and click on generates processor expert code&amp;nbsp;&lt;/P&gt;&lt;P&gt;code will not generated in pin_mux.c file as well.&lt;/P&gt;&lt;P&gt;see generated code below:&lt;/P&gt;&lt;P&gt;/* MODULE pin_mux. */&lt;BR /&gt;#include "device_registers.h"&lt;BR /&gt;#include "pin_mux.h"&lt;/P&gt;&lt;P&gt;/**&lt;BR /&gt;* @page misra_violations MISRA-C:2012 violations&lt;BR /&gt;*&lt;BR /&gt;*&lt;BR /&gt;* @section [global]&lt;BR /&gt;* Violates MISRA 2012 Advisory Rule 11.4, A conversion should not be performed&lt;BR /&gt;* between a pointer to object and an integer type.&lt;BR /&gt;* The cast is required to initialize a pointer with an unsigned int define,&lt;BR /&gt;* representing an address.&lt;BR /&gt;*&lt;BR /&gt;* @section [global]&lt;BR /&gt;* Violates MISRA 2012 Required Rule 11.6, A cast shall not be performed&lt;BR /&gt;* between pointer to void and an arithmetic type.&lt;BR /&gt;* The cast is required to initialize a pointer with an unsigned int define,&lt;BR /&gt;* representing an address.&lt;BR /&gt;*&lt;BR /&gt;* @section [global]&lt;BR /&gt;* Violates MISRA 2012 Advisory Rule 8.7, External variable could be made static.&lt;BR /&gt;* The external variables will be used in other source files in application code.&lt;BR /&gt;*&lt;BR /&gt;* @section [global]&lt;BR /&gt;* Violates MISRA 2012 Required Rule 9.3, partial array initialization.&lt;BR /&gt;* The object array is initialized sequentially.&lt;BR /&gt;*&lt;BR /&gt;* @section [global]&lt;BR /&gt;* Violates MISRA 2012 Required Rule 9.4, Duplicate initialization of object element.&lt;BR /&gt;* The object array is initialized sequentially.&lt;BR /&gt;*&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;/*! @brief No pin was configured different with reset value */&lt;/P&gt;&lt;P&gt;/* END pin_mux. */&lt;BR /&gt;/*!&lt;BR /&gt;** @}&lt;BR /&gt;*/&lt;BR /&gt;/*&lt;BR /&gt;** ###################################################################&lt;BR /&gt;**&lt;BR /&gt;** This file was created by Processor Expert 10.1 [05.21]&lt;BR /&gt;** for the Freescale S32K series of microcontrollers.&lt;BR /&gt;**&lt;BR /&gt;** ###################################################################&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 03:44:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486543#M16258</guid>
      <dc:creator>dhirajtarole</dc:creator>
      <dc:date>2022-07-08T03:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486574#M16259</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@dhirajtarole" target="_blank" rel="noopener"&gt;Hi@dhirajtarole&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;can you tell me whicih IDE &amp;amp; SDK you are using?&amp;nbsp; I will double check it,&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 05:19:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486574#M16259</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2022-07-08T05:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486578#M16260</link>
      <description>&lt;P&gt;IDE - S32DS ARM 2.2&lt;/P&gt;&lt;P&gt;SDK - S32K148_SDK&amp;nbsp; Version : 3.0.0&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 05:29:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486578#M16260</guid>
      <dc:creator>dhirajtarole</dc:creator>
      <dc:date>2022-07-08T05:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486617#M16261</link>
      <description>&lt;P&gt;Hi@&lt;SPAN&gt;dhirajtarole&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;we can do a test to troubleshoot the problem,&lt;/P&gt;
&lt;P&gt;1. import the sample project in the SDK,for example.&lt;/P&gt;
&lt;P&gt;a.import the demo:&amp;nbsp;&lt;STRONG&gt;hello_world_s32k148&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_0-1657261161618.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/186039iFE8F635F70820FDA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Senlent_0-1657261161618.png" alt="Senlent_0-1657261161618.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;b.made some changes,for example,we set the PTA0 to GPIO output,then generate the code.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_1-1657261776431.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/186040i75A3E5E95A448CE8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Senlent_1-1657261776431.png" alt="Senlent_1-1657261776431.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. Check whether the updated results have changed&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_2-1657261932577.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/186041i64DB7FABADBE6AA2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Senlent_2-1657261932577.png" alt="Senlent_2-1657261932577.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>Fri, 08 Jul 2022 06:33:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486617#M16261</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2022-07-08T06:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486636#M16264</link>
      <description>&lt;LI-SPOILER&gt;hi,&lt;BR /&gt;&lt;BR /&gt;For GPIO it is working, we will get a code as shown in your pin_mux.c file.&lt;BR /&gt;&lt;BR /&gt;can we get same code for ADC0 in pin_mux.c ?&lt;BR /&gt;&lt;BR /&gt;lets assume, we need to perform ADC operation for that we are generating ADC0 code and calling ADC0 function in the main.c file.&lt;BR /&gt;1.will this ADC code will run without pin_mux configuration ?&lt;BR /&gt;2.or for ADC , in pinmux Direction are given default(INPUT). just we need to select on which pin we want for ADC Channel (using pin/Signal Selection) ? --(AT this condition it is not generating code)&lt;BR /&gt;&lt;BR /&gt;thanks,&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (5).png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/186045iE83A7B03329FBD97/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot (5).png" alt="Screenshot (5).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (6).png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/186044i83A1508CFEB52DE9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot (6).png" alt="Screenshot (6).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (7).png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/186046i3364D6E694AAB59A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot (7).png" alt="Screenshot (7).png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Fri, 08 Jul 2022 06:54:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486636#M16264</guid>
      <dc:creator>dhirajtarole</dc:creator>
      <dc:date>2022-07-08T06:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486651#M16265</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@dhirajtarole" target="_blank"&gt;Hi@dhirajtarole&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_0-1657264020640.png" style="width: 432px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/186051iCE87EBB12F6A4166/image-dimensions/432x235?v=v2" width="432" height="235" role="button" title="Senlent_0-1657264020640.png" alt="Senlent_0-1657264020640.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 07:07:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486651#M16265</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2022-07-08T07:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486658#M16266</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/188029"&gt;@Senlent&lt;/a&gt;&amp;nbsp;, it is working.&lt;/P&gt;&lt;P&gt;could you pl find why this is not working for other pins.&lt;/P&gt;&lt;P&gt;And on the S32K148 EVB board pot is connected with PTC28 pin. so by using processor generate code we are unable to use that pin.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 07:15:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486658#M16266</guid>
      <dc:creator>dhirajtarole</dc:creator>
      <dc:date>2022-07-08T07:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Generate ADC0 pinmux  code using processor expert  for S32K148 EVB</title>
      <link>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486700#M16268</link>
      <description>&lt;P&gt;Hi@&lt;SPAN&gt;dhirajtarole&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;1. As we discussed before, most of the unused ports are set to ADC input by default&lt;BR /&gt;2. I don't quite understand your description about the PTC28 port.do you want to use this port? If yes, you can refer to &lt;STRONG&gt;adc_swtrigger_s32k148&lt;/STRONG&gt; this routine&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 08:12:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Unable-to-Generate-ADC0-pinmux-code-using-processor-expert-for/m-p/1486700#M16268</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2022-07-08T08:12:53Z</dc:date>
    </item>
  </channel>
</rss>

