<?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: MKL15Z128VFM4 LLWU wakeup pin in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616331#M36706</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks,r&lt;SPAN style="color: #434343; background-color: #f2f2f2; font-size: 12px;"&gt;eally is so.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;very very thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 14 Jan 2017 10:03:37 GMT</pubDate>
    <dc:creator>geniusgogo</dc:creator>
    <dc:date>2017-01-14T10:03:37Z</dc:date>
    <item>
      <title>MKL15Z128VFM4 LLWU wakeup pin</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616329#M36704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my board used LPTMR and PTC3 wakeup the LLWU mode on VLPS,&lt;/P&gt;&lt;P&gt;LPTMR able wakeup,&lt;/P&gt;&lt;P&gt;PTC3 can't wakeup,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #434343; background-color: #f2f2f2; font-size: 12px;"&gt;What causes it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #434343; background-color: #f2f2f2; font-size: 12px;"&gt;init code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;llwu_external_pin_filter_mode_t filterMode;&lt;/P&gt;&lt;P&gt;pin_config.pinDirection = kGPIO_DigitalInput;&lt;BR /&gt; pin_config.outputLogic = 0;&lt;/P&gt;&lt;P&gt;// MCU wakeup pin&lt;BR /&gt; GPIO_PinInit(GPIOC, 3, &amp;amp;pin_config);&lt;/P&gt;&lt;P&gt;/* Setup LPTMR. */&lt;BR /&gt; LPTMR_GetDefaultConfig(&amp;amp;lptmrConfig);&lt;BR /&gt; lptmrConfig.prescalerClockSource = kLPTMR_PrescalerClock_1; /* Use LPO as clock source. */&lt;BR /&gt; lptmrConfig.bypassPrescaler = true;&lt;BR /&gt; lptmrConfig.enableFreeRunning = true;&lt;BR /&gt; LPTMR_Init(LPTMR0, &amp;amp;lptmrConfig);&lt;BR /&gt; LPTMR_EnableInterrupts(LPTMR0, kLPTMR_TimerInterruptEnable);&lt;BR /&gt; LLWU_EnableInternalModuleInterruptWakup(LLWU, 0, true);&lt;BR /&gt; // setup external PTC3 pin&lt;BR /&gt; LLWU_SetExternalWakeupPinMode(LLWU, 7, kLLWU_ExternalPinAnyEdge);&lt;BR /&gt;NVIC_EnableIRQ(LLWU_IRQn);&lt;BR /&gt; NVIC_EnableIRQ(LPTMR0_IRQn);&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sleep ongo:&lt;/P&gt;&lt;P&gt;LPTMR_SetTimerPeriod(LPTMR0, 60000);&lt;BR /&gt; LPTMR_StartTimer(LPTMR0);&lt;BR /&gt; LLWU_SetExternalWakeupPinMode(LLWU, 7, kLLWU_ExternalPinAnyEdge);&lt;BR /&gt; SMC_SetPowerModeVlps(SMC);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2017 12:47:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616329#M36704</guid>
      <dc:creator>geniusgogo</dc:creator>
      <dc:date>2017-01-13T12:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: MKL15Z128VFM4 LLWU wakeup pin</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616330#M36705</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;The LLUW can't be used to wake the processor from VLPS (very low power STOP) because this mode is not a Low Leakage Mode (from LLS), meaning that the LLWU is not active when you set the VLPS mode.&lt;BR /&gt;To wake from VLPS you need an asynchronous interrupt. You can wake if you set LLS, for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis%2FLLWU.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis/LLWU.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis%2FFRDM-KL25Z.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL25Z.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2017 16:03:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616330#M36705</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2017-01-13T16:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: MKL15Z128VFM4 LLWU wakeup pin</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616331#M36706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks,r&lt;SPAN style="color: #434343; background-color: #f2f2f2; font-size: 12px;"&gt;eally is so.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;very very thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jan 2017 10:03:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616331#M36706</guid>
      <dc:creator>geniusgogo</dc:creator>
      <dc:date>2017-01-14T10:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: MKL15Z128VFM4 LLWU wakeup pin</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616332#M36707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi genius gogo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to set LLS mode you could check the following doc:&lt;A href="https://community.nxp.com/docs/DOC-332687"&gt;https://community.nxp.com/docs/DOC-332687&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example of how to set and use this mode in a FRDM-KL26Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this could help&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jorge Alcala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 19:02:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/MKL15Z128VFM4-LLWU-wakeup-pin/m-p/616332#M36707</guid>
      <dc:creator>jorge_a_vazquez</dc:creator>
      <dc:date>2017-01-16T19:02:28Z</dc:date>
    </item>
  </channel>
</rss>

