<?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: S32k324 RTC wake up in S32K</title>
    <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1945625#M40461</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229543"&gt;@Prasad_330&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;It seems like my colleague has already answered your post:&amp;nbsp;&lt;A href="https://community.nxp.com/t5/S32K/S32k324-VLSR-mode/td-p/1942299" target="_blank"&gt;S32k324 VLSR mode - NXP Community.&lt;/A&gt;&amp;nbsp;Please check your bit timing parameters for the FlexCAN module.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
    <pubDate>Mon, 02 Sep 2024 18:49:10 GMT</pubDate>
    <dc:creator>Julián_AragónM</dc:creator>
    <dc:date>2024-09-02T18:49:10Z</dc:date>
    <item>
      <title>S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1927950#M39092</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I am using S32k324 controller,&lt;/P&gt;&lt;P&gt;I am trying to put the controller in sleep mode and waking up from the RTC.&lt;/P&gt;&lt;P&gt;I am able to put the controller into standby mode.&lt;/P&gt;&lt;P&gt;But the controller is not waking from Standby mode.&lt;/P&gt;&lt;P&gt;RTC-API is used to&amp;nbsp; wakeup controller.&lt;/P&gt;&lt;P&gt;I have also attached the stand-alone rtc wake up code.&lt;/P&gt;&lt;P&gt;Please let me know what modifications has to be done&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 06:00:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1927950#M39092</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-08-08T06:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1928487#M39121</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229543"&gt;@Prasad_330&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Try to use this wake up config instead:&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;
static inline void Rtc_Ip_SetCompareValue(uint8 instance, uint32 value)
{
    /* Set RTCVAL */
    rtcBase[instance]-&amp;gt;RTCVAL = value;
}

void Wkup_Config(void)
{
	/* WKPU configuration */
	Wkpu_Ip_Init(WKPU_INST, &amp;amp;Wkpu_Ip_Config_PB);
	Wkpu_Ip_EnableInterrupt(WKPU_INST, 0);

	/* Init RTC and RTC_0_InitConfig_PB is config tool generated */
	Rtc_Ip_Init(RTC_INST, &amp;amp;RTC_0_InitConfig_PB);

	/* Disables the API functionality
       Clears the API interrupt flag*/
	Rtc_Ip_StopTimer(RTC_INST);

	Rtc_Ip_StartCounter(RTC_INST); 				/*&amp;lt;! Start the counter. */
	Rtc_Ip_SetCompareValue(RTC_INST, RTC_API_TIME);	/*&amp;lt;! Set counter value. */
	Siul2_Dio_Ip_WritePin(LED_PORT, LED_PIN, 0);
}&lt;/LI-CODE&gt;
&lt;P&gt;Also, make sure that SIRC is enabled in standby mode:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julin_AragnM_0-1723136674936.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/292635iB53901DEBC76B69B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_0-1723136674936.png" alt="Julin_AragnM_0-1723136674936.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 17:05:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1928487#M39121</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2024-08-08T17:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1929115#M39182</link>
      <description>&lt;P&gt;hi Julian_AragonM&lt;/P&gt;&lt;P&gt;Thanks for your reply,&lt;/P&gt;&lt;P&gt;Your solution worked for me.&lt;/P&gt;&lt;P&gt;I also wanted to know is there Very Low Speed Run (VLSR) mode.&lt;/P&gt;&lt;P&gt;Can you please share me some documents&amp;nbsp; regarding the configuration of VLSR mode or some Sample code&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 13:05:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1929115#M39182</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-08-09T13:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1929215#M39188</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229543"&gt;@Prasad_330&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;You can refer to the pdf included with the &lt;A href="https://community.nxp.com/t5/S32K-Knowledge-Base/S32K3-Low-Power-Management-AN-and-demos/ta-p/1527724" target="_self"&gt;Low Power Managements demos.&lt;/A&gt; All of the example codes contain another clock configuration which uses the FIRC for VLSR.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julin_AragnM_0-1723219566635.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/292784iE0E75106E7FF0A89/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_0-1723219566635.png" alt="Julin_AragnM_0-1723219566635.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="Julin_AragnM_1-1723219842524.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/292785i859D020331AEE6D8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_1-1723219842524.png" alt="Julin_AragnM_1-1723219842524.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="Julin_AragnM_2-1723219901111.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/292786i6CF364A4F3A1864C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_2-1723219901111.png" alt="Julin_AragnM_2-1723219901111.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 16:12:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1929215#M39188</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2024-08-09T16:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1936218#M39848</link>
      <description>&lt;P&gt;&lt;SPAN&gt;hi Julian_AragonM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I am working on s32k324 VLSR mode.&lt;/P&gt;&lt;P&gt;I have changed the clock to FIRC, But i am not able to make the CORE_CLK to 3MHZ.&amp;nbsp; Because the FIRC = 48MHZ&amp;nbsp; clock divider max value is only 8. so core clock = 48MHZ/8&amp;nbsp; is equal to 6MHZ.&lt;/P&gt;&lt;P&gt;How to change into 3MHZ.&lt;/P&gt;&lt;P&gt;I also wanted to know what are the module that can be used in the VLSR. I wanted use CAN and UART in VLSR mode.&lt;/P&gt;&lt;P&gt;how to change the "FlexCanProtocol clock" to 3MHZ&lt;/P&gt;&lt;P&gt;Can you plz help me out.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 11:02:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1936218#M39848</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-08-20T11:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1936651#M39870</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229543"&gt;@Prasad_330&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;You can select the frequency for Fast IRC from the Clocks Diagram:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julin_AragnM_0-1724177021594.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/294289i4BD3F3BCD31AD2FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_0-1724177021594.png" alt="Julin_AragnM_0-1724177021594.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And for the peripherals, please go into "Peripheral Clock View" and the source clock for each peripheral can be selected:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julin_AragnM_1-1724177085346.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/294290i72CB53018A7774D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_1-1724177085346.png" alt="Julin_AragnM_1-1724177085346.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 18:05:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1936651#M39870</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2024-08-20T18:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1937427#M39901</link>
      <description>&lt;P&gt;&lt;SPAN&gt;hi Julian_AragonM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;I have configured the clock configuration and &lt;SPAN&gt;Peripheral Clock View&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;as suggested by you.&lt;/P&gt;&lt;P&gt;But my FlexCAN configuration is configured as below snapshot and it is working properly in the RUN mode&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Prasad_330_0-1724241462190.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/294539i2AC26502CF7C5622/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Prasad_330_0-1724241462190.png" alt="Prasad_330_0-1724241462190.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;where my FlexCAN Protocal Clock is&amp;nbsp;25000000(25Mhz).&lt;/P&gt;&lt;P&gt;Now in VLSR mode if I change the clock of FlexCAN&amp;nbsp; to 3000000(3Mhz), should want to do any changes in the bitrate (kbps). if&amp;nbsp; so, then how to configure.&lt;/P&gt;&lt;P&gt;I am getting the bus_error in VLSR mode.&lt;/P&gt;&lt;P&gt;Plz let me know any other configuration I am missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 12:16:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1937427#M39901</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-08-21T12:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1937762#M39937</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229543"&gt;@Prasad_330&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The FlexCAN protocol clock needs to be configured as the peripheral clock:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/294607i7F4CA77AE546E076/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1.png" alt="1.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="Julin_AragnM_4-1724273279504.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/294608iA339DA8642F31825/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_4-1724273279504.png" alt="Julin_AragnM_4-1724273279504.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please refer to chapter&amp;nbsp;&lt;STRONG&gt;73.3.10.8 Protocol timing&lt;/STRONG&gt; from the S32K3XX's reference manual.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;DIV id="tinyMceEditorJulin_AragnM_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorJulin_AragnM_2" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorJulin_AragnM_3" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 21:02:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1937762#M39937</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2024-08-21T21:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1944118#M40363</link>
      <description>&lt;P&gt;Hi Julian&lt;/P&gt;&lt;P&gt;we are working on s32k324 very Low speed run mode for CAN&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To enter into VLSR mode from the RUN mode, I am changing the CLOCK to 3Mhz.&lt;/P&gt;&lt;P&gt;Before changing the clock i am de_initializing the CAN.&lt;/P&gt;&lt;P&gt;after changing the clock to 3MHZ ,I am reinitializing the CAN with 3Mhz&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Prasad_330_0-1724995535468.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/296214i0075523E68398D62/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Prasad_330_0-1724995535468.png" alt="Prasad_330_0-1724995535468.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The structure (above )"FlexCAN_Config0_VLSRM"&amp;nbsp; is created by me.&lt;/P&gt;&lt;P&gt;It is copied from the other project where&amp;nbsp; Flex CAN Protocol Clock is equal to 3MHZ and bitrate is equal to 500Kbps.&lt;/P&gt;&lt;P&gt;In the RUN mode CAN Tx and RX is working fine.&lt;/P&gt;&lt;P&gt;In the VLSR mode&amp;nbsp;&lt;/P&gt;&lt;P&gt;For CAN transmission we getting the return value as "FLEXCAN_STATUS_SUCCESS" for the ever first&amp;nbsp; time and from next cycle we are getting "FLEXCAN_STATUS_TIMEOUT" and also we are not getting any bus error.&lt;/P&gt;&lt;P&gt;But&amp;nbsp; if&amp;nbsp;CAN transmission is done @100 ms interval&amp;nbsp;from external environment to the s32k324 (using CAN Analyzer) most of the time we get&amp;nbsp; the return value as "FLEXCAN_STATUS_SUCCESS"&amp;nbsp; and randomly we are getting the CAN interrupt, which we have to get for every 100ms.&lt;/P&gt;&lt;P&gt;I have also attached the stand alone code for CAN VLSR mode.&lt;/P&gt;&lt;P&gt;Plz let me know any other parameter should be taken care&lt;/P&gt;</description>
      <pubDate>Fri, 30 Aug 2024 05:29:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1944118#M40363</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-08-30T05:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: S32k324 RTC wake up</title>
      <link>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1945625#M40461</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229543"&gt;@Prasad_330&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;It seems like my colleague has already answered your post:&amp;nbsp;&lt;A href="https://community.nxp.com/t5/S32K/S32k324-VLSR-mode/td-p/1942299" target="_blank"&gt;S32k324 VLSR mode - NXP Community.&lt;/A&gt;&amp;nbsp;Please check your bit timing parameters for the FlexCAN module.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2024 18:49:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32k324-RTC-wake-up/m-p/1945625#M40461</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2024-09-02T18:49:10Z</dc:date>
    </item>
  </channel>
</rss>

