<?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 DeepSleep on MIMXRT685-AUD-EVK with RTC as wake up source in i.MX RT Crossover MCUs</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1573916#M23056</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am currently trying to implement a POC on the&amp;nbsp;&lt;A href="https://community.nxp.com/t5/i-MX-RT/Implement-Echo-Canceller-on-MIMXRT685-AUD-EVK/td-p/1570364/jump-to/first-unread-message" target="_blank" rel="noopener"&gt;MIMXRT685-AUD-EVK&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to use deep sleep mode on the M33 side and RTC as a wake-up source.&lt;/P&gt;&lt;P&gt;I have a working example with alarm API and using seconds:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;RTC_Init(RTC);&lt;BR /&gt;RTC_Reset(RTC);&lt;/P&gt;&lt;P&gt;// Enable RTC wake&lt;BR /&gt;EnableIRQ(RTC_IRQn);&lt;BR /&gt;EnableDeepSleepIRQ(RTC_IRQn);&lt;/P&gt;&lt;P&gt;RTC_EnableTimer(RTC, false);&lt;/P&gt;&lt;P&gt;RTC_EnableInterrupts(RTC, kRTC_AlarmInterruptEnable);&lt;BR /&gt;RTC_EnableTimer(RTC, true);&lt;/P&gt;&lt;P&gt;RTC-&amp;gt;MATCH = RTC-&amp;gt;COUNT + 20; // lets wake up in 20 seconds&lt;/P&gt;&lt;P&gt;BOARD_EnterDeepSleep(APP_EXCLUDE_FROM_DEEPSLEEP);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;But I would like to use a millisecond delay! I did not find any examples in the SDK. There is some code available here:&amp;nbsp;&lt;A href="https://www.nxp.com/docs/en/application-note/AN12801.pdf" target="_self"&gt;AN12801.pdf&lt;/A&gt;. Also here:&amp;nbsp;&lt;A href="https://github.com/nxp-mcuxpresso/nxp-vee-imxrt595-evk/blob/82b571c79e67458f9e722737e21f85b094e0eb8c/nxpvee-mimxrt595-evk-round-bsp/projects/microej/main/src/time_hardware_timer.c#L42" target="_self"&gt;hardware timer&lt;/A&gt;. But no success so far. A lot of deprecated APIs in the example and not the same APIs.&lt;/P&gt;&lt;P&gt;My failed attempt:&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;RTC_Init(RTC);&lt;BR /&gt;RTC_Reset(RTC);&lt;/P&gt;&lt;P&gt;/* RTC time counter has to be stopped before setting the date &amp;amp; time in the TSR register */&lt;BR /&gt;RTC_EnableTimer(RTC, false);&lt;/P&gt;&lt;P&gt;RTC_EnableInterrupts(RTC, RTC_CTRL_WAKE1KHZ_MASK);&lt;BR /&gt;RTC_EnableWakeUpTimerInterruptFromDPD(RTC, true);&lt;BR /&gt;EnableDeepSleepIRQ(RTC_IRQn);&lt;/P&gt;&lt;P&gt;RTC_EnableTimer(RTC, true);&lt;BR /&gt;RTC-&amp;gt;CTRL |= RTC_CTRL_RTC_SUBSEC_ENA_MASK;&lt;BR /&gt;RTC-&amp;gt;COUNT = 0;&lt;/P&gt;&lt;P&gt;// add 200&amp;nbsp; ms seconds&lt;BR /&gt;RTC_SetWakeupCount(RTC, 200);&lt;/P&gt;&lt;P&gt;BOARD_EnterDeepSleep(APP_EXCLUDE_FROM_DEEPSLEEP);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Dec 2022 22:45:29 GMT</pubDate>
    <dc:creator>lambertarthur22</dc:creator>
    <dc:date>2022-12-22T22:45:29Z</dc:date>
    <item>
      <title>DeepSleep on MIMXRT685-AUD-EVK with RTC as wake up source</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1573916#M23056</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am currently trying to implement a POC on the&amp;nbsp;&lt;A href="https://community.nxp.com/t5/i-MX-RT/Implement-Echo-Canceller-on-MIMXRT685-AUD-EVK/td-p/1570364/jump-to/first-unread-message" target="_blank" rel="noopener"&gt;MIMXRT685-AUD-EVK&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to use deep sleep mode on the M33 side and RTC as a wake-up source.&lt;/P&gt;&lt;P&gt;I have a working example with alarm API and using seconds:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;RTC_Init(RTC);&lt;BR /&gt;RTC_Reset(RTC);&lt;/P&gt;&lt;P&gt;// Enable RTC wake&lt;BR /&gt;EnableIRQ(RTC_IRQn);&lt;BR /&gt;EnableDeepSleepIRQ(RTC_IRQn);&lt;/P&gt;&lt;P&gt;RTC_EnableTimer(RTC, false);&lt;/P&gt;&lt;P&gt;RTC_EnableInterrupts(RTC, kRTC_AlarmInterruptEnable);&lt;BR /&gt;RTC_EnableTimer(RTC, true);&lt;/P&gt;&lt;P&gt;RTC-&amp;gt;MATCH = RTC-&amp;gt;COUNT + 20; // lets wake up in 20 seconds&lt;/P&gt;&lt;P&gt;BOARD_EnterDeepSleep(APP_EXCLUDE_FROM_DEEPSLEEP);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;But I would like to use a millisecond delay! I did not find any examples in the SDK. There is some code available here:&amp;nbsp;&lt;A href="https://www.nxp.com/docs/en/application-note/AN12801.pdf" target="_self"&gt;AN12801.pdf&lt;/A&gt;. Also here:&amp;nbsp;&lt;A href="https://github.com/nxp-mcuxpresso/nxp-vee-imxrt595-evk/blob/82b571c79e67458f9e722737e21f85b094e0eb8c/nxpvee-mimxrt595-evk-round-bsp/projects/microej/main/src/time_hardware_timer.c#L42" target="_self"&gt;hardware timer&lt;/A&gt;. But no success so far. A lot of deprecated APIs in the example and not the same APIs.&lt;/P&gt;&lt;P&gt;My failed attempt:&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;RTC_Init(RTC);&lt;BR /&gt;RTC_Reset(RTC);&lt;/P&gt;&lt;P&gt;/* RTC time counter has to be stopped before setting the date &amp;amp; time in the TSR register */&lt;BR /&gt;RTC_EnableTimer(RTC, false);&lt;/P&gt;&lt;P&gt;RTC_EnableInterrupts(RTC, RTC_CTRL_WAKE1KHZ_MASK);&lt;BR /&gt;RTC_EnableWakeUpTimerInterruptFromDPD(RTC, true);&lt;BR /&gt;EnableDeepSleepIRQ(RTC_IRQn);&lt;/P&gt;&lt;P&gt;RTC_EnableTimer(RTC, true);&lt;BR /&gt;RTC-&amp;gt;CTRL |= RTC_CTRL_RTC_SUBSEC_ENA_MASK;&lt;BR /&gt;RTC-&amp;gt;COUNT = 0;&lt;/P&gt;&lt;P&gt;// add 200&amp;nbsp; ms seconds&lt;BR /&gt;RTC_SetWakeupCount(RTC, 200);&lt;/P&gt;&lt;P&gt;BOARD_EnterDeepSleep(APP_EXCLUDE_FROM_DEEPSLEEP);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 22:45:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1573916#M23056</guid>
      <dc:creator>lambertarthur22</dc:creator>
      <dc:date>2022-12-22T22:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: DeepSleep on MIMXRT685-AUD-EVK with RTC as wake up source</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1575123#M23093</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/210380"&gt;@lambertarthur22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Recommend to use MCUXpresso configure tool to config, then refer to the generated code:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1672214728245.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/205583iBD5E8E6AAEB2ADBB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1672214728245.png" alt="Alice_Yang_0-1672214728245.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;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 08:05:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1575123#M23093</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2022-12-28T08:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: DeepSleep on MIMXRT685-AUD-EVK with RTC as wake up source</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1575863#M23134</link>
      <description>&lt;P&gt;Hello Alice,&lt;BR /&gt;&lt;BR /&gt;Thanks for the reply.&lt;BR /&gt;&lt;BR /&gt;Ok so I configure my tool to wake up from deep sleep using RTC with a 6ms delay.&lt;BR /&gt;&lt;BR /&gt;I check &lt;STRONG&gt;wake up time&lt;/STRONG&gt;, put &lt;STRONG&gt;6&lt;/STRONG&gt; in &lt;STRONG&gt;wake up time&lt;/STRONG&gt; textbox, check &lt;STRONG&gt;enable wake up in deep power down&lt;/STRONG&gt;. I check &lt;STRONG&gt;Enable interrupt&lt;/STRONG&gt;. I finally select &lt;STRONG&gt;Enabled in initialization&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;The generated code from peripherals.c/.h:&lt;BR /&gt;&lt;BR /&gt;static void RTC_init(void) {&lt;BR /&gt;/* RTC initialization */&lt;BR /&gt;RTC_Init(RTC_PERIPHERAL);&lt;BR /&gt;/* Wake-up initialization */&lt;BR /&gt;RTC_SetWakeupCount(RTC_PERIPHERAL, RTC_WAKE_UP_TIME);&lt;BR /&gt;/* Enable interrupts for deep power-down */&lt;BR /&gt;RTC_EnableInterrupts(RTC_PERIPHERAL, kRTC_WakeupInterruptEnable);&lt;BR /&gt;/* Enable interrupt RTC_IRQn request in the NVIC. */&lt;BR /&gt;EnableIRQ(RTC_IRQN);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;/***********************************************************************************************************************&lt;BR /&gt;* Initialization functions&lt;BR /&gt;**********************************************************************************************************************/&lt;BR /&gt;void BOARD_InitPeripherals(void)&lt;BR /&gt;{&lt;BR /&gt;/* Initialize components */&lt;BR /&gt;RTC_init();&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;In my main I put:&lt;BR /&gt;&lt;BR /&gt;(...)&lt;BR /&gt;&lt;BR /&gt;BOARD_InitPeripherals ();&lt;BR /&gt;&lt;BR /&gt;PRINTF("Go to Deep Sleep... \r\n");&lt;BR /&gt;BOARD_SetPmicVoltageBeforeDeepSleep();&lt;BR /&gt;BOARD_EnterDeepSleep(APP_EXCLUDE_FROM_DEEPSLEEP);&lt;BR /&gt;BOARD_RestorePmicVoltageAfterDeepSleep();&lt;BR /&gt;PRINTF("Wake up M33... \r\n");&lt;BR /&gt;delay(); delay(); delay();&lt;BR /&gt;PRINTF("Lets go... \r\n");&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Nothing happens... I tried to add &lt;STRONG&gt;RTC_EnableTimer(RTC, true)&lt;/STRONG&gt; after the Init peripheral call but this is not working either. No wake up.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Arthur.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2022 17:49:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1575863#M23134</guid>
      <dc:creator>lambertarthur22</dc:creator>
      <dc:date>2022-12-30T17:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: DeepSleep on MIMXRT685-AUD-EVK with RTC as wake up source</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1577891#M23189</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/210380"&gt;@lambertarthur22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About low power and wakeup, recommend you first have a look at the power_manager demo under SDK, and "5.3.5 Deep power-down mode and full deep power-down mode"&amp;nbsp; in UM . Then add RTC into Power_manager demo, first confirm RTC works well, then check whether can wake up.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 10:06:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1577891#M23189</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-01-05T10:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: DeepSleep on MIMXRT685-AUD-EVK with RTC as wake up source</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1578632#M23208</link>
      <description>&lt;P&gt;Hello Alice,&lt;/P&gt;&lt;P&gt;This is precisely what I have already done. I clone the power manager project demonstrating the power mode. This time I am working directly inside the original power manager project.&lt;/P&gt;&lt;P&gt;Nothing is working. I even cannot have the alarm example working using the Config Tools. I made it work by writing some code in the first post. If I use the generated code through the Config tool, this is not working anymore. When I read the header, I can see that the tool is still generating deprecated API.&lt;/P&gt;&lt;P&gt;For example, I configure the Config tool to use an alarm RTC. This is my home config tool page :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="config_tool_homePNG.PNG" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/206337iDCC5C3D7DD1BC4F6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="config_tool_homePNG.PNG" alt="config_tool_homePNG.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my alarm configuration. I configure the tool to set an alarm 59 seconds after the boot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alarm_setting.PNG" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/206338i50C965374F12070E/image-size/large?v=v2&amp;amp;px=999" role="button" title="alarm_setting.PNG" alt="alarm_setting.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I push the Update code button. I added the init peripheral function generated by the tool:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;diff --git a/mimxrt685audevk_power_manager/source/power_manager.c b/mimxrt685audevk_power_manager/source/power_manager.c&lt;BR /&gt;index 5bf779b..89be1c3 100644&lt;BR /&gt;--- a/mimxrt685audevk_power_manager/source/power_manager.c&lt;BR /&gt;+++ b/mimxrt685audevk_power_manager/source/power_manager.c&lt;BR /&gt;@@ -15,6 +15,7 @@&lt;BR /&gt;#include "fsl_pint.h"&lt;BR /&gt;#include "fsl_usart.h"&lt;BR /&gt;#include "pmic_support.h"&lt;BR /&gt;+#include "peripherals.h"&lt;/P&gt;&lt;P&gt;#include "fsl_pca9420.h"&lt;BR /&gt;/*******************************************************************************&lt;BR /&gt;@@ -160,6 +161,7 @@ int main(void)&lt;BR /&gt;BOARD_InitBootPins();&lt;BR /&gt;BOARD_InitBootClocks();&lt;BR /&gt;BOARD_InitDebugConsole();&lt;BR /&gt;+ BOARD_InitBootPeripherals();&lt;/P&gt;&lt;P&gt;I can see in the RTC_init generated code that there is an&amp;nbsp;&lt;STRONG&gt;RTC_StopTimer(RTC_PERIPHERAL)&lt;/STRONG&gt; call.&lt;/P&gt;&lt;P&gt;So I suppose that I have to add a&amp;nbsp;&lt;STRONG&gt;RTC_StartTimer(RTC_PERIPHERAL);&lt;/STRONG&gt; before calling the code to switch to sleep mode.&amp;nbsp;&lt;/P&gt;&lt;P&gt;My change in power_manager.c:&lt;/P&gt;&lt;P&gt;@@ -205,9 +207,11 @@ int main(void)&lt;BR /&gt;switch (gCurrentPowerMode)&lt;BR /&gt;{&lt;BR /&gt;case kPmu_Sleep: /* Enter sleep mode. */&lt;BR /&gt;+ RTC_EnableTimer(RTC, true);&lt;BR /&gt;POWER_EnterSleep();&lt;BR /&gt;break;&lt;BR /&gt;case kPmu_Deep_Sleep: /* Enter deep sleep mode. */&lt;BR /&gt;+ RTC_EnableTimer(RTC, true);&lt;BR /&gt;BOARD_SetPmicVoltageBeforeDeepSleep();&lt;BR /&gt;#if POWER_DOWN_PLL_BEFORE_DEEP_SLEEP&lt;BR /&gt;/* Disable Pll before enter deep sleep mode */&lt;/P&gt;&lt;P&gt;I am running the test with Sleep mode and Deep sleep mode. I never wake up. The user button is working to wake-up the board.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arthur.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 15:55:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1578632#M23208</guid>
      <dc:creator>lambertarthur22</dc:creator>
      <dc:date>2023-01-06T15:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: DeepSleep on MIMXRT685-AUD-EVK with RTC as wake up source</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1579902#M23240</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/210380"&gt;@lambertarthur22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Refer to the steps in UM , check generated code.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_1-1673340961244.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/206655i887F9E82F610EDD2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_1-1673340961244.png" alt="Alice_Yang_1-1673340961244.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2023 08:57:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/DeepSleep-on-MIMXRT685-AUD-EVK-with-RTC-as-wake-up-source/m-p/1579902#M23240</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-01-10T08:57:30Z</dc:date>
    </item>
  </channel>
</rss>

