<?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: Port Initialization in run time in S32K</title>
    <link>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992507#M5842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please confirm the device you are using so we can assign the right engineer to help you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Mar 2020 20:40:31 GMT</pubDate>
    <dc:creator>FelipeGarcia</dc:creator>
    <dc:date>2020-03-05T20:40:31Z</dc:date>
    <item>
      <title>Port Initialization in run time</title>
      <link>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992506#M5841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want initialize the Port configuration in run time.&lt;/P&gt;&lt;P&gt;1. I have 2 different Hardware variants with different port configurations.&lt;/P&gt;&lt;P&gt;2. I have enabled post build selectable option for Port config and created 2 different&amp;nbsp;Port_&amp;lt;variant&amp;gt;_PBcfg files.&lt;/P&gt;&lt;P&gt;3. Now how can i integrate these file to my project?&lt;/P&gt;&lt;P&gt;4. How can call port init with different configuration set during run time?.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2020 12:33:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992506#M5841</guid>
      <dc:creator>rijil_kp</dc:creator>
      <dc:date>2020-03-05T12:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Port Initialization in run time</title>
      <link>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992507#M5842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please confirm the device you are using so we can assign the right engineer to help you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2020 20:40:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992507#M5842</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2020-03-05T20:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Port Initialization in run time</title>
      <link>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992508#M5843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using&amp;nbsp;&lt;STRONG&gt;s32k148_lqfp144 &lt;/STRONG&gt;controller.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2020 05:15:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992508#M5843</guid>
      <dc:creator>rijil_kp</dc:creator>
      <dc:date>2020-03-06T05:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Port Initialization in run time</title>
      <link>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992509#M5844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. To integrate these files into your projects, just add these files to your list of source files.&lt;/P&gt;&lt;P&gt;2. You can pass the pointer to the configuration as the parameter to Port_Init() function, then call it again when you want to switch the variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g., there are 2 generated Port configuration structures (Port_ConfigType) named as&amp;nbsp;PortConfigSet_VS_0 and&amp;nbsp;&lt;SPAN&gt;PortConfigSet_VS_1. At the beginning, you want to use&amp;nbsp;PortConfigSet_VS_0, then you will call:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Port_Init(&amp;amp;PortConfigSet_VS_0);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When you want to switch to&amp;nbsp;PortConfigSet_VS_1, simply call Port_Init again:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Port_Init(&amp;amp;&lt;SPAN&gt;PortConfigSet_VS_1);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2020 10:43:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Port-Initialization-in-run-time/m-p/992509#M5844</guid>
      <dc:creator>namnguyenviet</dc:creator>
      <dc:date>2020-03-09T10:43:19Z</dc:date>
    </item>
  </channel>
</rss>

