<?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: Proccessor Expert to configure the  RUN Mode</title>
    <link>https://community.nxp.com/t5/S32K/Proccessor-Expert-to-configure-the-RUN-Mode/m-p/709542#M1490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rares,&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;Just one thing, the input parameters for the&amp;nbsp; function &lt;STRONG&gt;POWER_SYS_Init&lt;/STRONG&gt; is a bit different from yours . the following is the definition in the SDK in my system.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;status_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; &lt;STRONG&gt;POWER_SYS_Init&lt;/STRONG&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;power_manager_user_config_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; *(* powerConfigsPtr)[],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;uint8_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; configsNumber,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;power_manager_callback_user_config_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; *(* callbacksPtr)[],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;uint8_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; callbacksNumber)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Note that the second input is the index of the configuration i.e. 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your great answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Aug 2017 20:10:09 GMT</pubDate>
    <dc:creator>hajianik</dc:creator>
    <dc:date>2017-08-29T20:10:09Z</dc:date>
    <item>
      <title>Proccessor Expert to configure the  RUN Mode</title>
      <link>https://community.nxp.com/t5/S32K/Proccessor-Expert-to-configure-the-RUN-Mode/m-p/709540#M1488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My target is S32K144 EVAL board and using design studio,&lt;/P&gt;&lt;P&gt;I've done this successfully by manually coding, however I've a hard time to use the Processor expert to configure the clk for 112 MHZ AND ENTERING THE HIGH SPEED MODE.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see the PLL clk configuration which is fine however I don't know how to enter the high speed mode using P.E.&lt;/P&gt;&lt;P&gt;As I said I've done this manually but having difficulty using P/E to do this.&lt;/P&gt;&lt;P&gt;and additionally I don't know how to select the source for the RUN mode using P.E. it seems it uses the FIRC by default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Ideas?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2017 15:08:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Proccessor-Expert-to-configure-the-RUN-Mode/m-p/709540#M1488</guid>
      <dc:creator>hajianik</dc:creator>
      <dc:date>2017-08-28T15:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proccessor Expert to configure the  RUN Mode</title>
      <link>https://community.nxp.com/t5/S32K/Proccessor-Expert-to-configure-the-RUN-Mode/m-p/709541#M1489</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;You need to add Power Manager Component into your project.&lt;/P&gt;&lt;P&gt;After the component is added, please configure it to have HSRUN mode and call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Initialize Power Manager */&lt;BR /&gt; POWER_SYS_Init(&amp;amp;powerConfigsArr, POWER_MODES, &amp;amp;powerStaticCallbacksConfigsArr, 0);&lt;/P&gt;&lt;P&gt;/* Set power mode to HSRUN */&lt;BR /&gt; POWER_SYS_SetMode(&lt;STRONG&gt;configurationIndex&lt;/STRONG&gt;, POWER_MANAGER_POLICY_AGREEMENT);&lt;/P&gt;&lt;P&gt;, where&amp;nbsp;&lt;STRONG&gt;configurationIndex&lt;/STRONG&gt; needs to be replaced by the index of the PowerManager configuration which is selected to HSRUN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also see power_mode_switch example or the Documentation for usage scenarios.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Rares&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2017 16:17:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Proccessor-Expert-to-configure-the-RUN-Mode/m-p/709541#M1489</guid>
      <dc:creator>raresvasile</dc:creator>
      <dc:date>2017-08-28T16:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Proccessor Expert to configure the  RUN Mode</title>
      <link>https://community.nxp.com/t5/S32K/Proccessor-Expert-to-configure-the-RUN-Mode/m-p/709542#M1490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rares,&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;Just one thing, the input parameters for the&amp;nbsp; function &lt;STRONG&gt;POWER_SYS_Init&lt;/STRONG&gt; is a bit different from yours . the following is the definition in the SDK in my system.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;status_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; &lt;STRONG&gt;POWER_SYS_Init&lt;/STRONG&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;power_manager_user_config_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; *(* powerConfigsPtr)[],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;uint8_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; configsNumber,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;power_manager_callback_user_config_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; *(* callbacksPtr)[],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #005032; font-size: small;"&gt;uint8_t&lt;/SPAN&gt;&lt;SPAN style="font-size: small;"&gt; callbacksNumber)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Note that the second input is the index of the configuration i.e. 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your great answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 20:10:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Proccessor-Expert-to-configure-the-RUN-Mode/m-p/709542#M1490</guid>
      <dc:creator>hajianik</dc:creator>
      <dc:date>2017-08-29T20:10:09Z</dc:date>
    </item>
  </channel>
</rss>

