<?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: S32KDS board clock generator in S32K</title>
    <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1622437#M21641</link>
    <description>&lt;P&gt;Hi, Robin&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I&amp;nbsp; tihnk this issue is on clock config, but I don't know hot to fix.&lt;/P&gt;&lt;P&gt;I had write a simple test projec and it is just te set 3 GPIO pins&lt;/P&gt;&lt;P&gt;The hardware init function (prvSetupHardware()) is written in main.c and listed&amp;nbsp; as following:&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, a hardware fault will be occured during operation.&lt;/P&gt;&lt;P&gt;This program will be ok, if I active the port enable code (In the Bold font type change #if 0 to #if 1)&lt;/P&gt;&lt;P&gt;This test project is also shown in the attached file.&lt;/P&gt;&lt;P&gt;Could you call me how to fix this clock config issue. Thanks.&lt;/P&gt;&lt;P&gt;static void prvSetupHardware(void)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;/* Initialize and configure clocks&lt;BR /&gt;* - Setup system clocks, dividers&lt;BR /&gt;* - see clock manager component for more details&lt;BR /&gt;*/&lt;BR /&gt;CLOCK_SYS_Init(g_clockManConfigsArr, CLOCK_MANAGER_CONFIG_CNT,&lt;BR /&gt;g_clockManCallbacksArr, CLOCK_MANAGER_CALLBACK_CNT);&lt;BR /&gt;&lt;STRONG&gt;#if 0&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;PCC-&amp;gt; PCCn[PCC_PORTB_INDEX] = PCC_PCCn_CGC_MASK; /* Enable clock to PORT B */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;PCC-&amp;gt; PCCn[PCC_PORTE_INDEX] = PCC_PCCn_CGC_MASK; /* Enable clock to PORT E */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;#endif&lt;/STRONG&gt;&lt;BR /&gt;CLOCK_SYS_UpdateConfiguration(0U, CLOCK_MANAGER_POLICY_AGREEMENT);&lt;/P&gt;&lt;P&gt;PINS_DRV_Init(NUM_OF_CONFIGURED_PINS0, g_pin_mux_InitConfigArr0);&lt;/P&gt;&lt;P&gt;/* Initialize LPI2C Master configuration&lt;BR /&gt;* - Fast operating mode, 400 KHz SCL frequency&lt;BR /&gt;* - See LPI2C components for configuration details&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;//PINS_DRV_WritePin(ENABLE_V_GPIO, ENABLE_V_PIN, 1); // Enable Power PTE10&lt;BR /&gt;//PINS_DRV_WritePin(ENABLE_BL_GPIO, ENABLE_BL_PIN, 1); // Enable Backlit PTE7&lt;BR /&gt;//PINS_DRV_WritePin(ENABLE_LCD_GPIO, ENABLE_LCD_PIN, 1); // Backlit PWM PTB12&lt;/P&gt;&lt;P&gt;return;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Mar 2023 08:59:28 GMT</pubDate>
    <dc:creator>Twokey</dc:creator>
    <dc:date>2023-03-27T08:59:28Z</dc:date>
    <item>
      <title>S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1621736#M21597</link>
      <description>&lt;P&gt;Hello, I have a work to write C program in S32K142 MCU.&lt;/P&gt;&lt;P&gt;The develoment platform is S32K design stduio (S32KDS) Ver. 3.5,&lt;/P&gt;&lt;P&gt;I use the S32KDS embedded "Board initial pins" and "Peripheral clock" to generate related hardware configuration.&lt;/P&gt;&lt;P&gt;The original generated configuraion settings will be occured "HardFault_Handler".&lt;/P&gt;&lt;P&gt;I found all the PORTA_CLK ~ PORTE_CLK seem to have no clock.&lt;/P&gt;&lt;P&gt;So, I use the initial pins to config the I/O ports and the MCU will be crash.&lt;/P&gt;&lt;P&gt;The program will be work after I add&lt;/P&gt;&lt;P&gt;PCC-&amp;gt; PCCn[PCC_PORTn_INDEX] = PCC_PCCn_CGC_MASK;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code to enable port clock.&lt;/P&gt;&lt;P&gt;The attached files are the pin and clock configs and auto generations by S32KDS platform.&lt;/P&gt;&lt;P&gt;How to fix the auto clock generate issue. Thanks.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;Twokey&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2023 14:31:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1621736#M21597</guid>
      <dc:creator>Twokey</dc:creator>
      <dc:date>2023-03-24T14:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1622275#M21630</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry I may not have understood your question.&lt;BR /&gt;Did you refer to the example of the S32K1 SDK? The clock gate is initialized in the following function:&lt;BR /&gt;/* Configure clocks for PORT */&lt;BR /&gt;error = CLOCK_DRV_Init(&amp;amp;clockMan1_InitConfig0);&lt;BR /&gt;By the way:&amp;nbsp;Does this problem still exist with S32K1 SDK v4.0.3 in S32DS v3.4?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Robin&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;
&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 06:22:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1622275#M21630</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2023-03-27T06:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1622437#M21641</link>
      <description>&lt;P&gt;Hi, Robin&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I&amp;nbsp; tihnk this issue is on clock config, but I don't know hot to fix.&lt;/P&gt;&lt;P&gt;I had write a simple test projec and it is just te set 3 GPIO pins&lt;/P&gt;&lt;P&gt;The hardware init function (prvSetupHardware()) is written in main.c and listed&amp;nbsp; as following:&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, a hardware fault will be occured during operation.&lt;/P&gt;&lt;P&gt;This program will be ok, if I active the port enable code (In the Bold font type change #if 0 to #if 1)&lt;/P&gt;&lt;P&gt;This test project is also shown in the attached file.&lt;/P&gt;&lt;P&gt;Could you call me how to fix this clock config issue. Thanks.&lt;/P&gt;&lt;P&gt;static void prvSetupHardware(void)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;/* Initialize and configure clocks&lt;BR /&gt;* - Setup system clocks, dividers&lt;BR /&gt;* - see clock manager component for more details&lt;BR /&gt;*/&lt;BR /&gt;CLOCK_SYS_Init(g_clockManConfigsArr, CLOCK_MANAGER_CONFIG_CNT,&lt;BR /&gt;g_clockManCallbacksArr, CLOCK_MANAGER_CALLBACK_CNT);&lt;BR /&gt;&lt;STRONG&gt;#if 0&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;PCC-&amp;gt; PCCn[PCC_PORTB_INDEX] = PCC_PCCn_CGC_MASK; /* Enable clock to PORT B */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;PCC-&amp;gt; PCCn[PCC_PORTE_INDEX] = PCC_PCCn_CGC_MASK; /* Enable clock to PORT E */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;#endif&lt;/STRONG&gt;&lt;BR /&gt;CLOCK_SYS_UpdateConfiguration(0U, CLOCK_MANAGER_POLICY_AGREEMENT);&lt;/P&gt;&lt;P&gt;PINS_DRV_Init(NUM_OF_CONFIGURED_PINS0, g_pin_mux_InitConfigArr0);&lt;/P&gt;&lt;P&gt;/* Initialize LPI2C Master configuration&lt;BR /&gt;* - Fast operating mode, 400 KHz SCL frequency&lt;BR /&gt;* - See LPI2C components for configuration details&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;//PINS_DRV_WritePin(ENABLE_V_GPIO, ENABLE_V_PIN, 1); // Enable Power PTE10&lt;BR /&gt;//PINS_DRV_WritePin(ENABLE_BL_GPIO, ENABLE_BL_PIN, 1); // Enable Backlit PTE7&lt;BR /&gt;//PINS_DRV_WritePin(ENABLE_LCD_GPIO, ENABLE_LCD_PIN, 1); // Backlit PWM PTB12&lt;/P&gt;&lt;P&gt;return;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 08:59:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1622437#M21641</guid>
      <dc:creator>Twokey</dc:creator>
      <dc:date>2023-03-27T08:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623218#M21690</link>
      <description>&lt;P&gt;Can you use &lt;STRONG&gt;CLOCK_DRV_Init&lt;/STRONG&gt; instead of CLOCK_SYS_Init?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CLOCK_SYS_Init CLOCK_DRV_Init.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/216571iED03D741DAB65736/image-size/large?v=v2&amp;amp;px=999" role="button" title="CLOCK_SYS_Init CLOCK_DRV_Init.png" alt="CLOCK_SYS_Init CLOCK_DRV_Init.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 09:13:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623218#M21690</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2023-03-28T09:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623230#M21691</link>
      <description>&lt;P&gt;Dear Robin,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Could you please provide the S32K1 SDK4.03&amp;nbsp;&lt;SPAN&gt;executable file(.exe) to Twokey? or attachment in here.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Best Regard,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 09:26:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623230#M21691</guid>
      <dc:creator>John64</dc:creator>
      <dc:date>2023-03-28T09:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623280#M21696</link>
      <description>&lt;P&gt;Dear Robin:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Thanks for your suggerstion,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I re-wrote the main.c code as you suggested, however, it still doesn't work.&lt;/P&gt;&lt;P&gt;This program is also crash, "HARDFault" in PINS_DRV_Init() fucntion.&lt;/P&gt;&lt;P&gt;The developmenmt environment of&amp;nbsp; S32KDS platform is Ver. 3.5 and&amp;nbsp; uses&amp;nbsp; S32K142_SDK_4.01,&lt;/P&gt;&lt;P&gt;I also attached the full test project.&lt;/P&gt;&lt;P&gt;Could you have any suggestion.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Twokey&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 10:25:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623280#M21696</guid>
      <dc:creator>Twokey</dc:creator>
      <dc:date>2023-03-28T10:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623660#M21704</link>
      <description>&lt;P&gt;You may need to update it in S32DS v3.4, please refer to &lt;A href="https://community.nxp.com/t5/S32K/How-to-connect-SDK-Version-4-0-3-to-S32DS/td-p/1475359" target="_self"&gt;How to connect SDK Version 4.0.3 to S32DS&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2023 00:17:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623660#M21704</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2023-03-29T00:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623726#M21709</link>
      <description>&lt;P&gt;Hi, Robin&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;My S32KDS is Version 3.5.&lt;/P&gt;&lt;P&gt;The same as "desginer1258475" proposed in 2023/1/29 that the "Extensions and Updates" dialog can not find &lt;SPAN&gt;S32K1 SDK4.0.3.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Ths dialog is captured as following:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Twokey_0-1680056495747.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/216727i6A0FB51C17C2BFC6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Twokey_0-1680056495747.png" alt="Twokey_0-1680056495747.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Twokey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2023 02:25:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623726#M21709</guid>
      <dc:creator>Twokey</dc:creator>
      <dc:date>2023-03-29T02:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623756#M21711</link>
      <description>&lt;P&gt;According to the ReleaseNotes of S32K1 SDK, RTM&lt;STRONG&gt;4.0.1&lt;/STRONG&gt; is developed with S32DS v&lt;STRONG&gt;3.3&lt;/STRONG&gt;(not v3.5).&lt;BR /&gt;Please install SDK RTM&lt;STRONG&gt;4.0.3&lt;/STRONG&gt; in S32DS v&lt;STRONG&gt;3.4&lt;/STRONG&gt;, and tell me the test results?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RTM4.0.1 v3.3 RTM4.0.3 v3.4.png" style="width: 682px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/216733i2613A5CEBFE08BC8/image-size/large?v=v2&amp;amp;px=999" role="button" title="RTM4.0.1 v3.3 RTM4.0.3 v3.4.png" alt="RTM4.0.1 v3.3 RTM4.0.3 v3.4.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2023 03:04:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1623756#M21711</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2023-03-29T03:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1624736#M21743</link>
      <description>&lt;P&gt;Hi, Robin&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The S32KDS platform and SDK were changed to V3.4 and V4.0.3 yesterday.&lt;/P&gt;&lt;P&gt;I try to run S32SDK_S32K1xx_RTM_4.0.3 example code (driver/timer/ftm_pwm.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am very supries it is still ot work. This example code also has HARDFault during step by step debug.&lt;/P&gt;&lt;P&gt;This issue is the same as preious location. Pleasse see the&amp;nbsp; following pictures.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Twokey_0-1680141983718.png" style="width: 371px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/216949i9D96BEE33242D00D/image-dimensions/371x227?v=v2" width="371" height="227" role="button" title="Twokey_0-1680141983718.png" alt="Twokey_0-1680141983718.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Twokey_1-1680142522951.png" style="width: 353px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/216951i66954E97CEC461C7/image-dimensions/353x226?v=v2" width="353" height="226" role="button" title="Twokey_1-1680142522951.png" alt="Twokey_1-1680142522951.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, it is not related to the versions of SDK_RTM and S32KDS platform.&lt;/P&gt;&lt;P&gt;Could oyu help us to check the sample code.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Twokey&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 02:17:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1624736#M21743</guid>
      <dc:creator>Twokey</dc:creator>
      <dc:date>2023-03-30T02:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1624852#M21745</link>
      <description>&lt;P&gt;I am able to debug ftm_pwm_s32k142 project on S32K142EVB without error.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ftm_pwm_s32k142.png" style="width: 773px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/217012iB3BCFC0C8B72A1F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="ftm_pwm_s32k142.png" alt="ftm_pwm_s32k142.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Please show me the part number of your S32K142, for example: PS32K142UAVLLT is the chip on my S32K142EVB.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="S32K142EVB.jpg" style="width: 932px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/217011i80DED926B35BAFD9/image-size/large?v=v2&amp;amp;px=999" role="button" title="S32K142EVB.jpg" alt="S32K142EVB.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Maybe we should check whether your chip is different form mine by refer to the "3.2 Ordering information" of&amp;nbsp;&lt;A id="relatedDocsClickPDF_1" class="dtmcustomrulelink" href="https://www.nxp.com/docs/en/data-sheet/S32K-DS.pdf" target="_blank" rel="noopener" data-dtmaction="Documentation Section - Results Link Click" data-dtmsubaction="S32K1xx MCU Family - Data Sheet - NXP - Data Sheet - English"&gt;&lt;SPAN&gt;S32K1xx MCU Family - Data Sheet.&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 03:17:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1624852#M21745</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2023-03-30T03:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1624906#M21747</link>
      <description>&lt;P&gt;Hi, Robin&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; It's a good new.&lt;/P&gt;&lt;P&gt;Here is our used MCU which code is FS32K142HATOMLHT.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Twokey_0-1680151743884.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/217022iE9A34CC9118558D6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Twokey_0-1680151743884.png" alt="Twokey_0-1680151743884.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Twokey_1-1680151768724.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/217023i41FC11012C8F4EE7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Twokey_1-1680151768724.png" alt="Twokey_1-1680151768724.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please help us tyo check it, Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Twokey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 04:51:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1624906#M21747</guid>
      <dc:creator>Twokey</dc:creator>
      <dc:date>2023-03-30T04:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: S32KDS board clock generator</title>
      <link>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1626638#M21805</link>
      <description>&lt;P&gt;PS32K142UAVLLT&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; U:112MHz&amp;nbsp; &amp;nbsp; LL:100LQFP&amp;nbsp; &amp;nbsp; V: -40C to 105C&lt;BR /&gt;FS32K142HATOMLHT&amp;nbsp; H:80MHz&amp;nbsp; &amp;nbsp; &amp;nbsp;LH:64LQFP&amp;nbsp; &amp;nbsp; &amp;nbsp; M: -40C to 125C&lt;/P&gt;
&lt;P&gt;I don't know if it is caused by the frequency difference. (Your chip seems don't need to select HSRUN mode. Please select RUN mode.)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please test attached &lt;STRONG&gt;hello_world_s32k142&lt;/STRONG&gt; project(toggle PTE7\10 and PTD15\16).&lt;/P&gt;
&lt;P&gt;I don't know if you have an 8MHz external crystal oscillator, so I chose FIRC.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you still encounter HardFault, please debug and check whether the &lt;STRONG&gt;clock gate&lt;/STRONG&gt; is enabled through &lt;STRONG&gt;CLOCK_SYS_SetPccConfiguration&lt;/STRONG&gt; in the &lt;STRONG&gt;CLOCK_DRV_Init&lt;/STRONG&gt; function.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CLOCK_DRV_Init CLOCK_SYS_SetPccConfiguration.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/217465i5B6C1EB174C83261/image-size/large?v=v2&amp;amp;px=999" role="button" title="CLOCK_DRV_Init CLOCK_SYS_SetPccConfiguration.png" alt="CLOCK_DRV_Init CLOCK_SYS_SetPccConfiguration.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 06:58:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32KDS-board-clock-generator/m-p/1626638#M21805</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2023-04-03T06:58:29Z</dc:date>
    </item>
  </channel>
</rss>

