<?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: [S32K3_MCAL_API]  Mcu_SetMode() take up a lot of time in S32K</title>
    <link>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/2346217#M57757</link>
    <description>Thanks for your response.&lt;BR /&gt;&lt;BR /&gt;I noticed that the duration is reduced to about 20 ms when I change this setting. If I also uncheck CM7_1 and CM7_2 under MCU control, the duration drops further to less than 1 ms.&lt;BR /&gt;&lt;BR /&gt;What impact does this configuration have on the rest of the software? Are there any side effects or dependencies I should be aware of when removing these cores from MCU control?</description>
    <pubDate>Tue, 07 Apr 2026 10:02:10 GMT</pubDate>
    <dc:creator>thorben_kamp</dc:creator>
    <dc:date>2026-04-07T10:02:10Z</dc:date>
    <item>
      <title>[S32K3_MCAL_API]  Mcu_SetMode() take up a lot of time</title>
      <link>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/1599539#M20694</link>
      <description>&lt;P&gt;Hi,all&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;We need to set up CAN Bus&amp;nbsp; quickly, but Mcu_SetMode() is taking up a lot of time( 85 ~ 120 ms).&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;Can I optimize the configuration of Mcu_SetMode? Or some other solution?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="time.png" style="width: 610px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/210998iFC6D9D840B4A0C64/image-size/large?v=v2&amp;amp;px=999" role="button" title="time.png" alt="time.png" /&gt;&lt;/span&gt;&lt;BR /&gt;BRs,&lt;/P&gt;&lt;P&gt;xianlong&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2023 10:46:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/1599539#M20694</guid>
      <dc:creator>wuxianlong</dc:creator>
      <dc:date>2023-02-15T10:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: [S32K3_MCAL_API]  Mcu_SetMode() take up a lot of time</title>
      <link>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/1600125#M20705</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/191389"&gt;@wuxianlong&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Before call Mcu_SetMode, you should call Mcu_InitClock() to change clocks to the correct values with the mode that needs to change as described details in the Reference manual.&lt;/P&gt;
&lt;P&gt;At the moment, I have only this proposal.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Dan&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 02:55:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/1600125#M20705</guid>
      <dc:creator>DanNguyenDuy</dc:creator>
      <dc:date>2023-02-16T02:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: [S32K3_MCAL_API]  Mcu_SetMode() take up a lot of time</title>
      <link>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/2335980#M57400</link>
      <description>&lt;P&gt;We are facing a similar issue. The function Mcu_SetMode requires up to 40 ms to complete, and we call Mcu_InitClock beforehand.&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;LI-CODE lang="c"&gt;Mcu_Init(&amp;amp;Mcu_Config); 
Mcu_InitClock(McuClockSettingConfig_0); 
while(MCU_PLL_LOCKED != Mcu_GetPllStatus()) 
{ 
/* Busy wait until the System PLL is locked */ 
} 
Mcu_DistributePllClock(); 
Mcu_SetMode(McuModeSettingConf_0); /* Initialize Platform Driver */ Platform_Init(NULL_PTR);&lt;/LI-CODE&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Mar 2026 13:33:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/2335980#M57400</guid>
      <dc:creator>thorben_kamp</dc:creator>
      <dc:date>2026-03-19T13:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: [S32K3_MCAL_API]  Mcu_SetMode() take up a lot of time</title>
      <link>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/2336234#M57414</link>
      <description>&lt;P&gt;Hi，&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The following two do not need to be checked. There are also some other questions, which can be referred to this.&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="S32K3 functional reset causes increased start-up time" uid="2007817" url="https://community.nxp.com/t5/S32K/S32K3-functional-reset-causes-increased-start-up-time/m-p/2007817#U2007817" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/379880i5CD4B1957D2DDB88/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Best Regaeds,&lt;BR /&gt;xianlong&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 01:15:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/2336234#M57414</guid>
      <dc:creator>wuxianlong</dc:creator>
      <dc:date>2026-03-20T01:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: [S32K3_MCAL_API]  Mcu_SetMode() take up a lot of time</title>
      <link>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/2346217#M57757</link>
      <description>Thanks for your response.&lt;BR /&gt;&lt;BR /&gt;I noticed that the duration is reduced to about 20 ms when I change this setting. If I also uncheck CM7_1 and CM7_2 under MCU control, the duration drops further to less than 1 ms.&lt;BR /&gt;&lt;BR /&gt;What impact does this configuration have on the rest of the software? Are there any side effects or dependencies I should be aware of when removing these cores from MCU control?</description>
      <pubDate>Tue, 07 Apr 2026 10:02:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K3-MCAL-API-Mcu-SetMode-take-up-a-lot-of-time/m-p/2346217#M57757</guid>
      <dc:creator>thorben_kamp</dc:creator>
      <dc:date>2026-04-07T10:02:10Z</dc:date>
    </item>
  </channel>
</rss>

