<?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>Kinetis Microcontrollers中的主题 Re: Problem delay RTC wakeup</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551677#M33539</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;yes, but my question is why the cpu take 25 seconds to wakeup? It's a long time. Before the printf the only code executed is the &lt;SPAN lang="en"&gt;peripherals &lt;/SPAN&gt;init.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Aug 2016 09:21:10 GMT</pubDate>
    <dc:creator>danielecortella</dc:creator>
    <dc:date>2016-08-02T09:21:10Z</dc:date>
    <item>
      <title>Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551675#M33537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm using the KL46 with KDS3.2 and SDK1.3.&lt;/P&gt;&lt;P&gt;I use the rtc to wakeup the micro every 4 minute and 30sec. I use the function RTC_DRV_SetAlarm to set the alarm and i reset the RTC timer to 0, so i have this condition:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Actual Time 00.00.00 01/01/1970, Allarm Time 0.4.30 01/01/1970&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;i read then some sensor and put the micro in VLLS1 with this function:&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="_jivemacro_uid_14697846724732789 jive_macro_code jive_text_macro" data-renderedposition="244_50_798_80" jivemacro_uid="_14697846724732789"&gt;&lt;P&gt;Peripheral_Disable();&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;&amp;nbsp; POWER_SYS_SetWakeupModule(kPowerManagerWakeupModule5, TRUE);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; error = CLOCK_SYS_UpdateConfiguration(2, kClockManagerPolicyAgreement);&lt;/P&gt;&lt;P&gt;&amp;nbsp; i = CLOCK_SYS_GetCoreClockFreq();&lt;/P&gt;&lt;P&gt;&amp;nbsp; POWER_SYS_SetMode(2, kPowerManagerPolicyAgreement);&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the system wake up and in the llwu interrupt i have this:&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_1469784713393406" data-renderedposition="376_50_798_112" jivemacro_uid="_1469784713393406"&gt;&lt;P&gt;PMC_REGSC = PMC_REGSC_ACKISO(1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; PORT_HAL_ClearPortIntFlag(PORTD_BASE_PTR);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(POWER_SYS_GetWakeupModuleFlag(kLlwuWakeupModule5)){&lt;/P&gt;&lt;P&gt;&amp;nbsp; SIM_SCGC6 |= SIM_SCGC6_RTC_MASK;&lt;/P&gt;&lt;P&gt;&amp;nbsp; RTC_DRV_AlarmIntAction(RTCTimer_IDX);&lt;/P&gt;&lt;P&gt;&amp;nbsp; impulsi_pioggia=0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then the micro reinit doing this command:&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14697847989991279 jive_text_macro" data-renderedposition="539_50_798_376" jivemacro_uid="_14697847989991279" modifiedtitle="true"&gt;&lt;/PRE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;/* Write your local variable definition here */&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;byte error = 0;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;/*** Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;PE_low_level_init();&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;/*** End of Processor Expert internal initialization.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ***/&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;LPTMR_DRV_Start(Timer_1ms_IDX);&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;Init_UART0(48000, 115200);&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#ifdef DEBUG&lt;/P&gt;&lt;P&gt;&amp;nbsp; debug_printf("////////////////////////////////////////////\r\n");&lt;/P&gt;&lt;P&gt;&amp;nbsp; debug_printf("////////////////////////////////////////////\r\n");&lt;/P&gt;&lt;P&gt;&amp;nbsp; RTC_DRV_GetDatetime(RTCTimer_IDX, &amp;amp;DataTime);&lt;/P&gt;&lt;P&gt;&amp;nbsp; debug_printf("Actual Time %02d.%02d.%02d %02d/%02d/%02d\r\n",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataTime.hour, DataTime.minute, DataTime.second, DataTime.day, DataTime.month, DataTime.year);&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i read :&amp;nbsp; Actual Time 00.04.55 01/01/1970 so there are 25 sec of delay ... why this? they are so many...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In clock configuration 2 used in the VLLS1 i have set this clock&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_5.png"&gt;&lt;IMG alt="pastedImage_5.png" src="https://community.nxp.com/t5/image/serverpage/image-id/21851i84FC5AF5D81D1A52/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_5.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2020 13:38:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551675#M33537</guid>
      <dc:creator>danielecortella</dc:creator>
      <dc:date>2020-11-02T13:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551676#M33538</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;KL46 MCU wake up from VLLS1 to normal Run mode will go through wake-up reset (Follows the reset flow with the LLWU interrupt flag set for the NVIC).&lt;/P&gt;&lt;P&gt;For the RTC module doesn't affected with VLLS1 low power mode and&amp;nbsp; wake-up reset procedure, the timer will continue counting at VLLS1 low power mode.&lt;/P&gt;&lt;P&gt;That's why customer will find the RTC timer pass 25 seconds after VLLS1 low power mode wake up.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Wish it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Ma Hui&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2016 08:59:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551676#M33538</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2016-08-02T08:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551677#M33539</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;yes, but my question is why the cpu take 25 seconds to wakeup? It's a long time. Before the printf the only code executed is the &lt;SPAN lang="en"&gt;peripherals &lt;/SPAN&gt;init.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2016 09:21:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551677#M33539</guid>
      <dc:creator>danielecortella</dc:creator>
      <dc:date>2016-08-02T09:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551678#M33540</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;Could you provide the whole project source code?&lt;/P&gt;&lt;P&gt;I want to make sure the RTC counter value just before core enter into VLLS1 low power mode.&lt;/P&gt;&lt;P&gt;Customer doesn't need to update the core/system clock configuration before enter into VLLS1 mode.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Wish it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Ma Hui&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 06:23:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551678#M33540</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2016-08-03T06:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551679#M33541</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;here is the firmware. The system wake up at 5:23 instead the 5:00.&lt;/P&gt;&lt;P&gt;You can use the frdm kl46 to test this. I use themcuoneclipse library for the WAIT function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 07:36:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551679#M33541</guid>
      <dc:creator>danielecortella</dc:creator>
      <dc:date>2016-08-03T07:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551680#M33542</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;There with a similar demo at &lt;A href="http://cache.nxp.com/files/32bit/software/KL46_SC.exe"&gt;&amp;lt;FRDM-KL46Z and TWR-KL46Z48M Sample Code Package&amp;gt; &lt;/A&gt;​named [lcd_rtc_lowpower_tower] demo. The default project path is ..\kinetis_kl46_sc\kinetis_kl46_sc_rev2\klxx-sc-baremetal\build\iar\lcd_rtc_lowpower&lt;/P&gt;&lt;P&gt;The demo using RTC as wake up source and will wake up the KL46 from VLLS1 low power mode every 5 seconds.&lt;/P&gt;&lt;P&gt;I checked the KL46 reference manual, below picture shows the MCG module is OFF during VLLSx clock mode.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/2460i7B3054501DA50A85/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.png" alt="pastedImage_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Customer could not using MCG IRC 32KHz clock as RTC module clock, the RTC module clock source with below option:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/2551i7AA8EAF1998D59F1/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Customer need to use TWR-KL46Z48M to do the RTC wake up KL46 MCU from VLLS1 low power mode test, for the TWR-KL46Z48M board provides 32KHz oscillator connects with RTC_CLKIN pin.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/2593iF61216239C82C6D5/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Wish it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Ma Hui&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2016 07:09:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551680#M33542</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2016-08-04T07:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551681#M33543</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;yes in fact i use the LPO 1khz like clock source for the RTC. You can see this in the fsl_clock_manager, clock configuration 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2016 07:26:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551681#M33543</guid>
      <dc:creator>danielecortella</dc:creator>
      <dc:date>2016-08-04T07:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551682#M33544</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;I checked your project, In &amp;lt;Wakeup.h&amp;gt; with below definition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define MIN_WAKEUP 5&lt;/P&gt;&lt;P&gt;#define SEC_WAKEUP 00&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/2952i3933967FD6A17A98/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.png" alt="pastedImage_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If that code be updated before you sent the code?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Wish it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Ma Hui&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2016 08:41:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551682#M33544</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2016-08-04T08:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551683#M33545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The firmware wake-up, reset the rtc in set_wakeup_timer and set the alarm after the MIN_WAKEUP (minutes) : SEC_WAKEUP (seconds). In the firmware sended the wakeup alarm is set after 5 minutes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/3117i9012694147FF6D09/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.png" alt="pastedImage_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;AlarmDataTime = DataTime;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;AlarmDataTime.minute = MIN_WAKEUP;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;AlarmDataTime.second = SEC_WAKEUP;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2016 09:19:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551683#M33545</guid>
      <dc:creator>danielecortella</dc:creator>
      <dc:date>2016-08-04T09:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem delay RTC wakeup</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551684#M33546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Daniele Cortellazzi wrote:&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;yes in fact i use the LPO 1khz like clock source for the RTC. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If you are measuring the extra 23 seconds from real time (instead of from the RTC time on the MCU), it may be that the LPO 1 kHz clock's poor accuracy is to blame.&amp;nbsp; It is specified as 1 kHz +/- 10%, and 23 seconds in 5 minutes is about 8% error, so it's possible that is part of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 19:01:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Problem-delay-RTC-wakeup/m-p/551684#M33546</guid>
      <dc:creator>colin</dc:creator>
      <dc:date>2016-08-08T19:01:32Z</dc:date>
    </item>
  </channel>
</rss>

