<?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>S32KのトピックRe: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
    <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098491#M48860</link>
    <description>&lt;P&gt;I have some question&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/160001"&gt;@danielmartynek&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. In case of S32K116 MCU, Can I switch the Normal Run → VLPS? or Normal Run&amp;nbsp;→ VLPR&amp;nbsp;→ VLPS?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to access Sleep mode to LPIT_Inturrupt&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. MCU has Sleep of status, can I wake up to LPIT_IRQ or CAN-FD?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 May 2025 01:12:51 GMT</pubDate>
    <dc:creator>mumumilmil</dc:creator>
    <dc:date>2025-05-16T01:12:51Z</dc:date>
    <item>
      <title>S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2096971#M48740</link>
      <description>&lt;P&gt;Hi, I used S32K116 ARM v2.2 tool.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to apply Run Mode -&amp;gt; VLPS Mode&amp;nbsp;&lt;/P&gt;&lt;P&gt;By 61mA -&amp;gt; 32mA - it means go to VLPR Mode. (I should be reduce Current to ~1mA)&lt;/P&gt;&lt;P&gt;But, I think that example code doesn't go deepsleep Mode.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mumumilmil_0-1747202148718.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/337681i9A55A131D936A105/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mumumilmil_0-1747202148718.png" alt="mumumilmil_0-1747202148718.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;mumumilmil_0-1747202148718.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It seems to go VLPR Mode but, Not going to VLPS Mode(deepsleep)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;void enable_low_power_modes(void)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SMC-&amp;gt;PMPROT |= SMC_PMPROT_AVLP(1);&amp;nbsp; /* Allow very low power run mode */&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SMC-&amp;gt;PMCTRL |= SMC_PMCTRL_RUNM(2);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;void go_to_sleep(void)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; unsigned long int regValue = ((*(unsigned long int *)0x4007E014u) &amp;amp; 0xFFu);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; /* Very low power stop mode can be entered only from Run mode or Very low power run mode*/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; if ((regValue != 1UL) &amp;amp;&amp;amp; (regValue != 4UL)) {&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; /* Set the SLEEPDEEP bit to enable deep sleep mode (STOP)*/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (*(unsigned long int *) 0xE000ED10u) |= (1 &amp;lt;&amp;lt; 2);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; /* Set power mode to specified STOP mode*/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; /* SMC_HAL_SetStopModeControl(baseAddr, stopMode); */&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; SMC-&amp;gt;PMCTRL |= SMC_PMCTRL_STOPM(2);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; /* Wait For Interrupt */&lt;/DIV&gt;&lt;DIV&gt;#if defined (__GNUC__)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; __asm volatile ("wfi");&lt;/DIV&gt;&lt;DIV&gt;#endif&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;And if VLPS mode needs to SIRC Clock, I should adjust VCCR? ( Now, Using RCCR for SYS, Core clock)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mumumilmil_1-1747202367059.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/337682i23B9EF9875F40B1B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mumumilmil_1-1747202367059.png" alt="mumumilmil_1-1747202367059.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;mumumilmil_1-1747202367059.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 06:00:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2096971#M48740</guid>
      <dc:creator>mumumilmil</dc:creator>
      <dc:date>2025-05-14T06:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2097083#M48749</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/232277"&gt;@mumumilmil&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Do you have an NXP EVB or you own board?&lt;/P&gt;
&lt;P&gt;Where do you measure the current?&lt;/P&gt;
&lt;P&gt;Make sure the power supply does not power other components on the board and that the MCU does not drive anything on its outputs as they remain active in all S32K1xx low power modes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you use the functions from this example?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/S32K-Knowledge-Base/Example-S32K144-RTC-VLPS/ta-p/1119655" target="_blank"&gt;https://community.nxp.com/t5/S32K-Knowledge-Base/Example-S32K144-RTC-VLPS/ta-p/1119655&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 07:44:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2097083#M48749</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2025-05-14T07:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2097168#M48758</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/160001" target="_self"&gt;&lt;SPAN class=""&gt;@danielmartynek&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I measured current to multimeter from board to power supply.&lt;/P&gt;&lt;P&gt;so, it is difficult to measure each IC's current..&lt;/P&gt;&lt;P&gt;Then, If FIRC have converted to SIRC, how to check applied SIRC Clock?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 09:07:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2097168#M48758</guid>
      <dc:creator>mumumilmil</dc:creator>
      <dc:date>2025-05-14T09:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2097328#M48773</link>
      <description>&lt;P&gt;On S32K116 EVB, there is J15 for this purpose.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="danielmartynek_0-1747224340498.png" style="width: 496px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/337778i02087580ABBB4EDB/image-dimensions/496x181?v=v2" width="496" height="181" role="button" title="danielmartynek_0-1747224340498.png" alt="danielmartynek_0-1747224340498.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;danielmartynek_0-1747224340498.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The example I linked here has this function that enables CLKOUT, so you can measure BUS_CLK before and after the switch from FICR to SIRC.&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;/*******************************************************************************
Function: clkout_bus
*******************************************************************************/
void clkout_bus(void)
{
  SIM-&amp;gt;CHIPCTL &amp;amp;= ~(1 &amp;lt;&amp;lt; 11); //Disable CLKOUT
  SIM-&amp;gt;CHIPCTL |= (9 &amp;lt;&amp;lt; 4); //BUS_CLK
  SIM-&amp;gt;CHIPCTL |= (1 &amp;lt;&amp;lt; 11); //Enable CLKOUT
  // [11] CLKOUTEN = 1 CLKOUT enable
  // [7-4] CLKOUTSEL = 0b1001 BUS_CLK
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 12:08:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2097328#M48773</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2025-05-14T12:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098491#M48860</link>
      <description>&lt;P&gt;I have some question&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/160001"&gt;@danielmartynek&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. In case of S32K116 MCU, Can I switch the Normal Run → VLPS? or Normal Run&amp;nbsp;→ VLPR&amp;nbsp;→ VLPS?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to access Sleep mode to LPIT_Inturrupt&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. MCU has Sleep of status, can I wake up to LPIT_IRQ or CAN-FD?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 01:12:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098491#M48860</guid>
      <dc:creator>mumumilmil</dc:creator>
      <dc:date>2025-05-16T01:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098669#M48882</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/232277"&gt;@mumumilmil&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;1. Yes&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="danielmartynek_1-1747376614512.png" style="width: 421px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/338143i29E63D87B51D91D3/image-dimensions/421x361?v=v2" width="421" height="361" role="button" title="danielmartynek_1-1747376614512.png" alt="danielmartynek_1-1747376614512.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;danielmartynek_1-1747376614512.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2.&lt;/P&gt;
&lt;P&gt;LPIT is a wakeup source in VLPS, but FlexCAN is not (PNET in STOP1/2 only).&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="danielmartynek_0-1747376561745.png" style="width: 593px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/338142i7EE13701B2D803C8/image-dimensions/593x454?v=v2" width="593" height="454" role="button" title="danielmartynek_0-1747376561745.png" alt="danielmartynek_0-1747376561745.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;danielmartynek_0-1747376561745.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 06:23:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098669#M48882</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2025-05-16T06:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098751#M48890</link>
      <description>&lt;P&gt;I completed Run to VLPS Mode. but Current is 2.5mA...&lt;/P&gt;&lt;P&gt;Thank you for&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/160001"&gt;@danielmartynek&lt;/a&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 07:31:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098751#M48890</guid>
      <dc:creator>mumumilmil</dc:creator>
      <dc:date>2025-05-16T07:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098793#M48895</link>
      <description>&lt;P&gt;Can you power-cycle the the MCU run it standalone without the debugger?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 07:57:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098793#M48895</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2025-05-16T07:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098815#M48900</link>
      <description>&lt;P&gt;Yes, I checked OSC voltage.&lt;/P&gt;&lt;P&gt;When MCU has been Run status, SOSC send output .&lt;/P&gt;&lt;P&gt;If MCU go to sleep-mode, OSC output's power is 0V. go to sleep by removed wire.(LPIT_Inturrupt)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, I should be Wake-up by CAN signal. &lt;SPAN&gt;I think that needs to change VLPS to STOP mode.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 08:07:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098815#M48900</guid>
      <dc:creator>mumumilmil</dc:creator>
      <dc:date>2025-05-16T08:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098974#M48918</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/232277"&gt;@mumumilmil&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The SOSC module is disabled by the application not by the MCU, test BUS_CLK via CLKOUT instead.&lt;/P&gt;
&lt;P&gt;You can use the pin interrupt of the CAN RX pin as a wakeup source in VLPS.&lt;/P&gt;
&lt;P&gt;The first message will be lost though as the FlexCAN is disabled at the time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR, Daniel&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>Fri, 16 May 2025 11:16:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2098974#M48918</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2025-05-16T11:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: S32K116 RUN to VLPS Mode and Interrupt AWIC/NVIC  for wakeup</title>
      <link>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2102135#M49062</link>
      <description>&lt;P&gt;VLPS Mode should be use Port-inturrupt.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/160001"&gt;@danielmartynek&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 23:29:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K116-RUN-to-VLPS-Mode-and-Interrupt-AWIC-NVIC-for-wakeup/m-p/2102135#M49062</guid>
      <dc:creator>mumumilmil</dc:creator>
      <dc:date>2025-05-21T23:29:01Z</dc:date>
    </item>
  </channel>
</rss>

