<?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 Deep sleep and wake up using RTC in LPC54018 in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1773400#M54935</link>
    <description>&lt;P&gt;Hello, I am essentially trying to replicate the success of this post (&lt;A href="https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54618/m-p/925137" target="_blank"&gt;https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54618/m-p/925137&lt;/A&gt;) but using the LPC54018 processor instead.&amp;nbsp; I placed a comment within that thread noting that I can see a wakeup occurring via the RTC however I cannot get execution to return to the main function.&amp;nbsp; Is there some fundamental difference between the LPC54618 and LPC54018 when using the RTC for deep sleep?&lt;/P&gt;</description>
    <pubDate>Tue, 12 Dec 2023 21:53:54 GMT</pubDate>
    <dc:creator>mitchkapa</dc:creator>
    <dc:date>2023-12-12T21:53:54Z</dc:date>
    <item>
      <title>Deep sleep and wake up using RTC in LPC54018</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1773400#M54935</link>
      <description>&lt;P&gt;Hello, I am essentially trying to replicate the success of this post (&lt;A href="https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54618/m-p/925137" target="_blank"&gt;https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54618/m-p/925137&lt;/A&gt;) but using the LPC54018 processor instead.&amp;nbsp; I placed a comment within that thread noting that I can see a wakeup occurring via the RTC however I cannot get execution to return to the main function.&amp;nbsp; Is there some fundamental difference between the LPC54618 and LPC54018 when using the RTC for deep sleep?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 21:53:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1773400#M54935</guid>
      <dc:creator>mitchkapa</dc:creator>
      <dc:date>2023-12-12T21:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Deep sleep and wake up using RTC in LPC54018</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1773725#M54941</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;As you know that the waking-up from deep-sleep follows up the interrupt procedure, in other words, when the waking-up happens, it enters ISR&amp;nbsp; firstly, after executing the ISR, it returns to main from ISR.&lt;/P&gt;
&lt;P&gt;So you have to enable the alarm interrupt and create an ISR for the RTC alarm interrupt.&lt;/P&gt;
&lt;P&gt;Pls have a try.&lt;/P&gt;
&lt;P&gt;If you have issue, pls post your code, I will have a review.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 08:30:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1773725#M54941</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2023-12-13T08:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Deep sleep and wake up using RTC in LPC54018</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1774000#M54942</link>
      <description>&lt;P&gt;Below is the source code.&amp;nbsp; I am running this code on the LPCXpresso54018 development board.&amp;nbsp; Within the RTC_IRQHandler function I put multiple PRINTF statements and those do print so the wake up from sleep is happening.&amp;nbsp; But the "Alarm Occurs" message from the main body never prints.&amp;nbsp; Here is an example of the debug output:&lt;/P&gt;&lt;P&gt;RTC example: set up time to wake up an alarm&lt;BR /&gt;Current datetime: 2014-12-25 19: 0: 0&lt;BR /&gt;Please input the number of second to wait for alarm&lt;BR /&gt;The second must be positive value&lt;BR /&gt;5&lt;BR /&gt;currSecond =: 1419534002Alarm will occur at: 2014-12-25 19: 0: 7&lt;/P&gt;&lt;P&gt;Interrupt occurs !!!!&lt;BR /&gt;I cleared the alarm flag !!!!&lt;BR /&gt;I got past the IF errata statement !!!!&lt;/P&gt;&lt;P&gt;_______________________________________________________&lt;/P&gt;&lt;P&gt;Here is the source code:&lt;/P&gt;&lt;DIV&gt;#include "fsl_debug_console.h"&lt;/DIV&gt;&lt;DIV&gt;#include "board.h"&lt;/DIV&gt;&lt;DIV&gt;#include "fsl_rtc.h"&lt;/DIV&gt;&lt;DIV&gt;#include "pin_mux.h"&lt;/DIV&gt;&lt;DIV&gt;#include &amp;lt;stdbool.h&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;#include "peripherals.h"&lt;/DIV&gt;&lt;DIV&gt;#include "fsl_common.h"&lt;/DIV&gt;&lt;DIV&gt;#include "fsl_power.h"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/*******************************************************************************&lt;/DIV&gt;&lt;DIV&gt;* Definitions&lt;/DIV&gt;&lt;DIV&gt;******************************************************************************/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;#define APP_EXCLUDE_FROM_DEEPSLEEP \&lt;/DIV&gt;&lt;DIV&gt;(SYSCON_PDRUNCFG_PDEN_SRAMX_MASK | SYSCON_PDRUNCFG_PDEN_SRAM0_MASK | SYSCON_PDRUNCFG_PDEN_SRAM1_2_3_MASK | SYSCON_PDRUNCFG_PDEN_WDT_OSC_MASK \&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;/*******************************************************************************&lt;/DIV&gt;&lt;DIV&gt;* Prototypes&lt;/DIV&gt;&lt;DIV&gt;******************************************************************************/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/*******************************************************************************&lt;/DIV&gt;&lt;DIV&gt;* Variables&lt;/DIV&gt;&lt;DIV&gt;******************************************************************************/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;volatile bool busyWait;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/*******************************************************************************&lt;/DIV&gt;&lt;DIV&gt;* Code&lt;/DIV&gt;&lt;DIV&gt;******************************************************************************/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/*!&lt;/DIV&gt;&lt;DIV&gt;* @brief ISR for Alarm interrupt&lt;/DIV&gt;&lt;DIV&gt;*&lt;/DIV&gt;&lt;DIV&gt;* This function changes the state of busyWait.&lt;/DIV&gt;&lt;DIV&gt;*/&lt;/DIV&gt;&lt;DIV&gt;void RTC_IRQHandler(void)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;if (RTC_GetStatusFlags(RTC) &amp;amp; kRTC_AlarmFlag)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;PRINTF("\r\n Interrupt occurs !!!! ");&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;busyWait = false;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Clear alarm flag */&lt;/DIV&gt;&lt;DIV&gt;RTC_ClearStatusFlags(RTC, kRTC_AlarmFlag);&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;PRINTF("\r\n I cleared the alarm flag !!!! ");&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;/* Add for ARM errata 838869, affects Cortex-M4, Cortex-M4F Store immediate overlapping&lt;/DIV&gt;&lt;DIV&gt;exception return operation might vector to incorrect interrupt */&lt;/DIV&gt;&lt;DIV&gt;#if defined __CORTEX_M &amp;amp;&amp;amp; (__CORTEX_M == 4U)&lt;/DIV&gt;&lt;DIV&gt;__DSB();&lt;/DIV&gt;&lt;DIV&gt;#endif&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;PRINTF("\r\n I got past the IF errata statement !!!! ");&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/*!&lt;/DIV&gt;&lt;DIV&gt;* @brief Main function&lt;/DIV&gt;&lt;DIV&gt;*/&lt;/DIV&gt;&lt;DIV&gt;int main(void)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;gpio_pin_config_t led_config = {kGPIO_DigitalOutput, 0,};&lt;/DIV&gt;&lt;DIV&gt;uint32_t sec;&lt;/DIV&gt;&lt;DIV&gt;uint32_t currSeconds;&lt;/DIV&gt;&lt;DIV&gt;uint8_t index;&lt;/DIV&gt;&lt;DIV&gt;rtc_datetime_t date;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Board pin, clock, debug console init */&lt;/DIV&gt;&lt;DIV&gt;/* attach 12 MHz clock to FLEXCOMM0 (debug console) */&lt;/DIV&gt;&lt;DIV&gt;CLOCK_AttachClk(BOARD_DEBUG_UART_CLK_ATTACH);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Enable the RTC 32K Oscillator */&lt;/DIV&gt;&lt;DIV&gt;SYSCON-&amp;gt;RTCOSCCTRL |= SYSCON_RTCOSCCTRL_EN_MASK;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;BOARD_InitPins();&lt;/DIV&gt;&lt;DIV&gt;BOARD_BootClockFROHF48M();&lt;/DIV&gt;&lt;DIV&gt;BOARD_InitDebugConsole();&lt;/DIV&gt;&lt;DIV&gt;CLOCK_EnableClock(kCLOCK_Gpio3);&lt;/DIV&gt;&lt;DIV&gt;/* Init RTC */&lt;/DIV&gt;&lt;DIV&gt;RTC_Init(RTC);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;PRINTF("RTC example: set up time to wake up an alarm\r\n");&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Set a start date time and start RT */&lt;/DIV&gt;&lt;DIV&gt;date.year = 2014U;&lt;/DIV&gt;&lt;DIV&gt;date.month = 12U;&lt;/DIV&gt;&lt;DIV&gt;date.day = 25U;&lt;/DIV&gt;&lt;DIV&gt;date.hour = 19U;&lt;/DIV&gt;&lt;DIV&gt;date.minute = 0;&lt;/DIV&gt;&lt;DIV&gt;date.second = 0;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* RTC time counter has to be stopped before setting the date &amp;amp; time in the TSR register */&lt;/DIV&gt;&lt;DIV&gt;RTC_StopTimer(RTC);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Set RTC time to default */&lt;/DIV&gt;&lt;DIV&gt;RTC_SetDatetime(RTC, &amp;amp;date);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Enable RTC alarm interrupt */&lt;/DIV&gt;&lt;DIV&gt;RTC_EnableInterrupts(RTC, kRTC_AlarmInterruptEnable);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Enable at the NVIC */&lt;/DIV&gt;&lt;DIV&gt;EnableIRQ(RTC_IRQn);&lt;/DIV&gt;&lt;DIV&gt;EnableDeepSleepIRQ(RTC_IRQn);&lt;/DIV&gt;&lt;DIV&gt;/* Start the RTC time counter */&lt;/DIV&gt;&lt;DIV&gt;RTC_StartTimer(RTC);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* This loop will set the RTC alarm */&lt;/DIV&gt;&lt;DIV&gt;while (1)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;busyWait = true;&lt;/DIV&gt;&lt;DIV&gt;index = 0;&lt;/DIV&gt;&lt;DIV&gt;sec = 0;&lt;/DIV&gt;&lt;DIV&gt;/* Get date time */&lt;/DIV&gt;&lt;DIV&gt;RTC_GetDatetime(RTC, &amp;amp;date);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* print default time */&lt;/DIV&gt;&lt;DIV&gt;PRINTF("Current datetime: %04d-%02d-%02d %02d:%02d:%02d\r\n",&lt;/DIV&gt;&lt;DIV&gt;date.year,&lt;/DIV&gt;&lt;DIV&gt;date.month,&lt;/DIV&gt;&lt;DIV&gt;date.day,&lt;/DIV&gt;&lt;DIV&gt;date.hour,&lt;/DIV&gt;&lt;DIV&gt;date.minute,&lt;/DIV&gt;&lt;DIV&gt;date.second);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Get alarm time from user */&lt;/DIV&gt;&lt;DIV&gt;PRINTF("Please input the number of second to wait for alarm \r\n");&lt;/DIV&gt;&lt;DIV&gt;PRINTF("The second must be positive value\r\n");&lt;/DIV&gt;&lt;DIV&gt;while (index != 0x0D)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;index = GETCHAR();&lt;/DIV&gt;&lt;DIV&gt;if((index &amp;gt;= '0') &amp;amp;&amp;amp; (index &amp;lt;= '9'))&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;PUTCHAR(index);&lt;/DIV&gt;&lt;DIV&gt;sec = sec * 10 + (index - 0x30U);&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;PRINTF("\r\n");&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Read the RTC seconds register to get current time in seconds */&lt;/DIV&gt;&lt;DIV&gt;currSeconds = RTC-&amp;gt;COUNT;&lt;/DIV&gt;&lt;DIV&gt;PRINTF("currSecond =: %d", currSeconds);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Add alarm seconds to current time */&lt;/DIV&gt;&lt;DIV&gt;currSeconds += sec;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Set alarm time in seconds */&lt;/DIV&gt;&lt;DIV&gt;RTC-&amp;gt;MATCH = currSeconds;&lt;/DIV&gt;&lt;DIV&gt;//RTC_SetAlarm(RTC, currSeconds);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Get alarm time */&lt;/DIV&gt;&lt;DIV&gt;RTC_GetAlarm(RTC, &amp;amp;date);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/* Print alarm time */&lt;/DIV&gt;&lt;DIV&gt;PRINTF("Alarm will occur at: %04d-%02d-%02d %02d:%02d:%02d\r\n",&lt;/DIV&gt;&lt;DIV&gt;date.year,&lt;/DIV&gt;&lt;DIV&gt;date.month,&lt;/DIV&gt;&lt;DIV&gt;date.day,&lt;/DIV&gt;&lt;DIV&gt;date.hour,&lt;/DIV&gt;&lt;DIV&gt;date.minute,&lt;/DIV&gt;&lt;DIV&gt;date.second);&lt;/DIV&gt;&lt;DIV&gt;POWER_EnterDeepSleep(APP_EXCLUDE_FROM_DEEPSLEEP);&lt;/DIV&gt;&lt;DIV&gt;//POWER_EnterSleep();&lt;/DIV&gt;&lt;DIV&gt;/* Wait until alarm occurs */&lt;/DIV&gt;&lt;DIV&gt;while (busyWait)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;PRINTF("\r\n Alarm occurs !!!! ");&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 14:20:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1774000#M54942</guid>
      <dc:creator>mitchkapa</dc:creator>
      <dc:date>2023-12-13T14:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Deep sleep and wake up using RTC in LPC54018</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1774654#M54954</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;where you declare the bool variable busyWait?&lt;/P&gt;
&lt;P&gt;How about&amp;nbsp; commenting the following line&lt;/P&gt;
&lt;P&gt;while (busyWait)&lt;BR /&gt;{&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2023 09:23:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1774654#M54954</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2023-12-14T09:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Deep sleep and wake up using RTC in LPC54018</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1774849#M54960</link>
      <description>&lt;P&gt;The variable is declared here:&lt;/P&gt;&lt;DIV&gt;/*******************************************************************************&lt;/DIV&gt;&lt;DIV&gt;* Variables&lt;/DIV&gt;&lt;DIV&gt;******************************************************************************/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;volatile bool busyWait;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I tried commenting out the while loop and the code still does not reach the final PRINTF statement.&lt;/DIV&gt;</description>
      <pubDate>Thu, 14 Dec 2023 13:52:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1774849#M54960</guid>
      <dc:creator>mitchkapa</dc:creator>
      <dc:date>2023-12-14T13:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Deep sleep and wake up using RTC in LPC54018</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1775416#M54971</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Pls try to use the line:&lt;/P&gt;
&lt;DIV style="background-color: #ffffff; padding: 0px 0px 0px 2px;"&gt;
&lt;DIV style="color: #000000; background-color: #ffffff; font-family: 'Consolas'; font-size: 10pt; white-space: nowrap;"&gt;
&lt;P&gt;&lt;SPAN&gt;#define&lt;/SPAN&gt;&lt;SPAN&gt; APP_EXCLUDE_FROM_DEEPSLEEP \&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; (SYSCON_PDRUNCFG_PDEN_SRAMX_MASK | SYSCON_PDRUNCFG_PDEN_SRAM0_MASK | SYSCON_PDRUNCFG_PDEN_SRAM1_2_3_MASK | \&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; SYSCON_PDRUNCFG_PDEN_VD6_MASK|SYSCON_PDRUNCFG_PDEN_WDT_OSC_MASK)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;XiangJun Rong&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 15 Dec 2023 08:10:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1775416#M54971</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2023-12-15T08:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Deep sleep and wake up using RTC in LPC54018</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1775659#M54978</link>
      <description>&lt;P&gt;Thank you this was the solution I was missing&amp;nbsp;&lt;SPAN&gt;SYSCON_PDRUNCFG_PDEN_VD6_MASK from the exclusions.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2023 15:45:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Deep-sleep-and-wake-up-using-RTC-in-LPC54018/m-p/1775659#M54978</guid>
      <dc:creator>mitchkapa</dc:creator>
      <dc:date>2023-12-15T15:45:17Z</dc:date>
    </item>
  </channel>
</rss>

