<?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: KL25z LLS Wake-Up - Reactivating PORT in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL25z-LLS-Wake-Up-Reactivating-PORT/m-p/1450465#M62995</link>
    <description>&lt;P&gt;Hi Robin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could have sworn that i already tried that. Nevertheless i worked!!!&lt;/P&gt;&lt;P&gt;Thanks alot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mathias&lt;/P&gt;</description>
    <pubDate>Thu, 28 Apr 2022 06:48:21 GMT</pubDate>
    <dc:creator>Bergma</dc:creator>
    <dc:date>2022-04-28T06:48:21Z</dc:date>
    <item>
      <title>KL25z LLS Wake-Up - Reactivating PORT</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL25z-LLS-Wake-Up-Reactivating-PORT/m-p/1450130#M62993</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I am having some trouble getting the KL25z to wake up fully after LLS. By that i mean that I am unable to utilize the I/O pins, i.e. the PORT module, after wakeup.&lt;/P&gt;&lt;P&gt;I gather that i need to reactivate something, but I have been unable to find the documentation regarding this.&lt;/P&gt;&lt;P&gt;Below is the LLWU IRQ Handler&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;void LLWU_IRQHandler()
{

	if (LLWU-&amp;gt;F2 &amp;amp; LLWU_F2_WUF14_MASK)
	{
		// Clear Wake-up flag for pin
		LLWU-&amp;gt;F2 |= LLWU_F2_WUF14_MASK;

		// Disable sleep on exit
		SCB-&amp;gt;SCR &amp;amp;= ~SCB_SCR_SLEEPONEXIT_Msk;
	}
	else
		if (LLWU-&amp;gt;F3 &amp;amp; LLWU_F3_MWUF0_MASK)
		{
			// write 1 to TCF to clear the LPT timer compare flag
			LPTMR0-&amp;gt;CSR |= LPTMR_CSR_TCF_MASK;

			PTB-&amp;gt;PTOR |= MASK(0);
		}
	//PMC-&amp;gt;REGSC &amp;amp;= ~PMC_REGSC_ACKISO_MASK;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using MCUXpresso with NXP SDK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm kinda banging my head against the wall here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mathias&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 21:00:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL25z-LLS-Wake-Up-Reactivating-PORT/m-p/1450130#M62993</guid>
      <dc:creator>Bergma</dc:creator>
      <dc:date>2022-04-27T21:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: KL25z LLS Wake-Up - Reactivating PORT</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL25z-LLS-Wake-Up-Reactivating-PORT/m-p/1450418#M62994</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Mathias,&lt;/P&gt;
&lt;P&gt;Please refer the&amp;nbsp;&lt;STRONG&gt;frdmkl25z_demo_apps_power_mode_switch&lt;/STRONG&gt; SDK example:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="frdmkl25z_demo_apps_power_mode_switch.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/178272i0B81E4CF0A4832F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="frdmkl25z_demo_apps_power_mode_switch.png" alt="frdmkl25z_demo_apps_power_mode_switch.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Robin&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;
&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 05:24:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL25z-LLS-Wake-Up-Reactivating-PORT/m-p/1450418#M62994</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2022-04-28T05:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: KL25z LLS Wake-Up - Reactivating PORT</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL25z-LLS-Wake-Up-Reactivating-PORT/m-p/1450465#M62995</link>
      <description>&lt;P&gt;Hi Robin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could have sworn that i already tried that. Nevertheless i worked!!!&lt;/P&gt;&lt;P&gt;Thanks alot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mathias&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 06:48:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL25z-LLS-Wake-Up-Reactivating-PORT/m-p/1450465#M62995</guid>
      <dc:creator>Bergma</dc:creator>
      <dc:date>2022-04-28T06:48:21Z</dc:date>
    </item>
  </channel>
</rss>

