<?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>Kinetis MicrocontrollersのトピックRe: Wake from LLS</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419958#M24006</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No I haven't tried it - doesn't it require us to have a board similar to FRDM-KL27Z (with boot loader for mass storage and whatnot)? We have a custom board.&lt;/P&gt;&lt;P&gt;Or is it a stand-alone binary? In that case, how do I program it to target? We've so far only used Eclipse's own gdb plugins for PE Micro. I can run the server standalone and connect from gdb client, but that doesn't help much without flash programming routines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards/Magnus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Oct 2015 13:36:02 GMT</pubDate>
    <dc:creator>MagnusNilsson</dc:creator>
    <dc:date>2015-10-30T13:36:02Z</dc:date>
    <item>
      <title>Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419952#M24000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to wake a MKL17Z256Vxx4 from LLS on external pin, following the "bare metal" example in AN4503 ch 4.1.&lt;/P&gt;&lt;P&gt;Entering LLS works (i.e. code execution stops), but it won't wake up.&lt;/P&gt;&lt;P&gt;The code below is for port C3(LLWU_P7), since I have a simple push button connected to it, but I've also attempted port C5(LLWU_P9).&lt;/P&gt;&lt;P&gt;AN4503 says: "If interrupts are disabled, the execution resumes with the instruction after the WFI, or STOP instruction."&lt;/P&gt;&lt;P&gt;- so I assume I don't have to use a LLWU_IRQHandler (even though I've tried that too).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;void main(void){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (uint8_t i = 0; i &amp;lt; HW_PORT_INSTANCE_COUNT; i++){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOCK_SYS_EnablePortClock(i);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SIM_SCGC5 |= SIM_SCGC5_PORTC_MASK;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORTC_PCR3 =(PORT_PCR_ISF_MASK |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_PCR_MUX(01) |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_PCR_IRQC(0x0B) | //either edge interrupt enable&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_PCR_PE_MASK |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_PCR_PS_MASK);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //SIM_SCGC4 = SIM_SCGC4_LLWU_MASK; // does not exist in Kinetis L ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LLWU_PE2 = 0xC0; //WPU07 either edge&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //MCG_C6 &amp;amp;= ~MCG_C6_CME0_MASK; // not for Kinetis L ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SMC_PMPROT = 0x08;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SMC_PMCTRL |= 0x03;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; volatile unsigned int dummyread = SMC_PMCTRL;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SCB-&amp;gt;SCR |= SCB_SCR_SLEEPDEEP_Msk;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; asm("WFI");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //now in LLS - does however not wake up when PC3 is toggled&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //snip some code that lights an LED to show that the MCU woke up&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(1){}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would be very grateful for a sniplet of code that successfully enters and exits LLS on Kinetis L.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 17:15:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419952#M24000</guid>
      <dc:creator>MagnusNilsson</dc:creator>
      <dc:date>2015-10-21T17:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419953#M24001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Magnus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are additional details concerning the LLWU operation at:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.utasker.com/kinetis/LLWU.html" rel="nofollow"&gt;http://www.utasker.com/kinetis/LLWU.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you continue having problems you can get a complete solution for the KL27 which includes low leakage management (and automatic dynamic switching between lower power modes to optimise power) at the links below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached two binaries for the FRDM-KL27Z (with USB disabled) which may operate on your KL17 board if you use the same UART as its virtual COM one. In the administrator menu the low power modes can be tested and LLS wakeup is falling-edge on SW3 (PTC1) or PTC3 (as you require).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking at your code I suspect that the problem may be that there is also an interrupt enabled on the port (this is not required), or that you don't have an interrupt handler for the LLWU:&lt;/P&gt;&lt;P&gt;- it may be that it is waking from the LLWU mode but immediately taking one of these interrupts (if not handled corretly it will end up in a default interrupt handler) and then also not reach your following code that lights LEDs.&lt;/P&gt;&lt;P&gt;- although I don't think that thsi is the case in your code, PTC3 defaults to being a disabled mux function and LLWU will not operate on such a pin if left in that state (it can be set to GPIO or any other mux position and then does operate as expected).&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;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kinetis: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.utasker.com/kinetis.html" rel="nofollow"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;KL27: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.utasker.com/kinetis/FRDM-KL27Z.html" rel="nofollow"&gt;http://www.utasker.com/kinetis/FRDM-KL27Z.html&lt;/A&gt;&lt;SPAN&gt; / &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.utasker.com/kinetis/Capuccino-KL27/Capuccino-KL27.html" rel="nofollow"&gt;http://www.utasker.com/kinetis/Capuccino-KL27/Capuccino-KL27.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For the complete "out-of-the-box" Kinetis experience and faster time to market&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #7ed529;"&gt;:smileyinfo: Out-of-the-box support for 47 Kinetis boards and 10 IDEs (&lt;EM&gt;470 combinations from a single code source with no porting required&lt;/EM&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 20:26:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419953#M24001</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2015-10-21T20:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419954#M24002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tried enabling both LLWU and PORTCD interrupts, but that doesn't seem to make any difference in waking the MCU.&lt;/P&gt;&lt;P&gt;So I'm trying the simplest case for waking from LLS described in AN4503, i.e. not using interrupts at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AN4503 states that:&lt;/P&gt;&lt;P&gt;"Interrupts do not need to be enabled nor does the LLWU interrupt vector need to be enabled for the MCU to&lt;/P&gt;&lt;P&gt;wake from LLS or VLLSx low-power modes."&lt;/P&gt;&lt;P&gt;"If interrupts are disabled, the execution resumes with the instruction after the WFI, or STOP instruction"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I still missing some configuration of the LLWU?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;int main(void){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; __asm("CPSID i"); //turn off all interrupts&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (uint8_t i = 0; i &amp;lt; HW_PORT_INSTANCE_COUNT; i++){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOCK_SYS_EnablePortClock(i);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //configure LEDs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_HAL_SetMuxMode(RED_LED_PORT, RED_LED_PIN_NBR, kPortMuxAsGpio);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_ClearPinOutput(RED_LED_PIN);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_SetPinDir(RED_LED_PIN, kGpioDigitalOutput);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_HAL_SetMuxMode(GREEN_LED_PORT, GREEN_LED_PIN_NBR, kPortMuxAsGpio);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_ClearPinOutput(GREEN_LED_PIN);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_SetPinDir(GREEN_LED_PIN, kGpioDigitalOutput);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //light only GREEN LED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(RED_LED_PIN, 0b00000000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(GREEN_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SIM_SCGC5 |= SIM_SCGC5_PORTC_MASK;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORTC_PCR3 =(PORT_PCR_ISF_MASK |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_PCR_MUX(01) |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_PCR_PE_MASK |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT_PCR_PS_MASK);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //wait until button PC3 is pressed - to ensure pin working and correctly configured as input&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(GPIO_DRV_ReadPinInput(BUTTON_PIN)){};&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //light only RED LED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(RED_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(GREEN_LED_PIN, 0b00000000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SMC_PMPROT = 0x08;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SMC_PMCTRL |= 0x03;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; volatile unsigned int dummyread = SMC_PMCTRL;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LLWU_PE2 = 0xC0; //WPU07 either edge&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SCB-&amp;gt;SCR |= SCB_SCR_SLEEPDEEP_Msk;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; asm("WFI");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Should sleep here (it does),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //and wake up on button PC3 press (it does not)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (LLWU_F1 &amp;amp; LLWU_F1_WUF7_MASK) {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LLWU_F1 |= LLWU_F1_WUF7_MASK;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //light only GREEN LED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(RED_LED_PIN, 0b00000000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(GREEN_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //light RED and GREEN LED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(RED_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(GREEN_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(1){}&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 09:20:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419954#M24002</guid>
      <dc:creator>MagnusNilsson</dc:creator>
      <dc:date>2015-10-22T09:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419955#M24003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Magnus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately the AN is confusing and LLS will NOT wake when the LLWU's interrupt is masked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a quick fix (adjust to suit your headers and add it to your initialisation)&lt;/P&gt;&lt;P&gt;IRQ4_7_PRIORITY_REGISTER = 0x400000000; // set Int ID 7 (LLWU module) to priority 1&lt;/P&gt;&lt;P&gt;IRQ0_31_SER = 0x00000080; // enable Interrupt 7 (LLWU module) source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code after the wake up is to clear the LLWU module's flag so that the interrupt vector is not actually taken (once the global interrupts are re-enabled, which would normally be done subsequently).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LLWU_F1 = LLWU_F1_WUF7_MASK; is adequate (the flag will always be set and the register is 'write-'1'-to-clear) so checking the flag and the OR are redundent.&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;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kinetis: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.utasker.com/kinetis.html" rel="nofollow"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;KL27: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.utasker.com/kinetis/FRDM-KL27Z.html" rel="nofollow"&gt;http://www.utasker.com/kinetis/FRDM-KL27Z.html&lt;/A&gt;&lt;SPAN&gt; / &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.utasker.com/kinetis/Capuccino-KL27/Capuccino-KL27.html" rel="nofollow"&gt;http://www.utasker.com/kinetis/Capuccino-KL27/Capuccino-KL27.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For the complete "out-of-the-box" Kinetis experience and faster time to market&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #7ed529;"&gt;:smileyinfo: Out-of-the-box support for 47 Kinetis boards and 10 IDEs (&lt;EM&gt;470 combinations from a single code source with no porting required&lt;/EM&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 13:09:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419955#M24003</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2015-10-22T13:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419956#M24004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately adding those two lines ('translated' to the API I'm using) didn't do anything, as far as I can see.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; line-height: 1.5;"&gt;&amp;nbsp; //IRQ4_7_PRIORITY_REGISTER = 0x400000000; // set Int ID 7 (LLWU module) to priority 1 -&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; NVIC_SetPriority(LLWU_IRQn, 1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //IRQ0_31_SER = 0x00000080; // enable Interrupt 7 (LLWU module) source -&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; NVIC_EnableIRQ(LLWU_IRQn);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5;"&gt;It still hangs in LLS.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Doesn't anyone have a working code sniplet how to use the LLWU for KL17?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The full code I'm trying here:&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;int main(void)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; line-height: 1.5;"&gt;&amp;nbsp; __asm("CPSID i"); //turn off all interrupts&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //IRQ4_7_PRIORITY_REGISTER = 0x400000000; // set Int ID 7 (LLWU module) to priority 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; NVIC_SetPriority(LLWU_IRQn, 1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //IRQ0_31_SER = 0x00000080; // enable Interrupt 7 (LLWU module) source&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; NVIC_EnableIRQ(LLWU_IRQn);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; for (uint8_t i = 0; i &amp;lt; HW_PORT_INSTANCE_COUNT; i++){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOCK_SYS_EnablePortClock(i);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //configure LEDs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; PORT_HAL_SetMuxMode(RED_LED_PORT, RED_LED_PIN_NBR, kPortMuxAsGpio);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; GPIO_DRV_ClearPinOutput(RED_LED_PIN);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; GPIO_DRV_SetPinDir(RED_LED_PIN, kGpioDigitalOutput);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; PORT_HAL_SetMuxMode(GREEN_LED_PORT, GREEN_LED_PIN_NBR, kPortMuxAsGpio);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; GPIO_DRV_ClearPinOutput(GREEN_LED_PIN);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; GPIO_DRV_SetPinDir(GREEN_LED_PIN, kGpioDigitalOutput);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //light only GREEN LED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; GPIO_DRV_WritePinOutput(RED_LED_PIN, 0b00000000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; GPIO_DRV_WritePinOutput(GREEN_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; SIM_SCGC5 |= SIM_SCGC5_PORTC_MASK;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; PORTC_PCR3 =(PORT_PCR_ISF_MASK |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; PORT_PCR_MUX(01) |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; PORT_PCR_PE_MASK |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; PORT_PCR_PS_MASK);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //wait until button PC3 is pressed - to ensure pin working and correctly configured as input&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; while(GPIO_DRV_ReadPinInput(BUTTON_PIN)){};&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //light only RED LED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; GPIO_DRV_WritePinOutput(RED_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; GPIO_DRV_WritePinOutput(GREEN_LED_PIN, 0b00000000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; SMC_PMPROT = 0x08;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; SMC_PMCTRL |= 0x03;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; volatile unsigned int dummyread = SMC_PMCTRL;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LLWU_PE2 = 0xC0; //WPU07 either edge&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; SCB-&amp;gt;SCR |= SCB_SCR_SLEEPDEEP_Msk;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; asm("WFI");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //Should sleep here (it does),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; //and wake up on button PC3 press (it does not)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; if (LLWU_F1 &amp;amp; LLWU_F1_WUF7_MASK) {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LLWU_F1 |= LLWU_F1_WUF7_MASK;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //light only GREEN LED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(RED_LED_PIN, 0b00000000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(GREEN_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; } else {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //light RED and GREEN LED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(RED_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPIO_DRV_WritePinOutput(GREEN_LED_PIN, 0b00000001);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; while(1){}&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2015 13:53:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419956#M24004</guid>
      <dc:creator>MagnusNilsson</dc:creator>
      <dc:date>2015-10-26T13:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419957#M24005</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;I don't notice any further problems in your code.&lt;/P&gt;&lt;P&gt;Did you try the KL27 binary that I sent because if that operates you can copy its register setup.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2015 14:22:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419957#M24005</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2015-10-26T14:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419958#M24006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No I haven't tried it - doesn't it require us to have a board similar to FRDM-KL27Z (with boot loader for mass storage and whatnot)? We have a custom board.&lt;/P&gt;&lt;P&gt;Or is it a stand-alone binary? In that case, how do I program it to target? We've so far only used Eclipse's own gdb plugins for PE Micro. I can run the server standalone and connect from gdb client, but that doesn't help much without flash programming routines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards/Magnus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2015 13:36:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419958#M24006</guid>
      <dc:creator>MagnusNilsson</dc:creator>
      <dc:date>2015-10-30T13:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419959#M24007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Magnus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The binary is standalone and I expect that it will run on any KLx7 HW since it uses the internal clock (UART command line menu is however only the same LPUART0 as the FRDM-K27Z - if you tell me which UART you have I can adjust this though).&lt;/P&gt;&lt;P&gt;Usually there is a Flash programming utility in the IDEs.&lt;/P&gt;&lt;P&gt;If you don't have a method with your Eclipse environment and can't find a plug-in I would install CodeWarrior and/or KDS since they include one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally it is recommended to have a reference board available for comparisons and testing standard solutions (the FRDM boards tend to cost only about $12).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In case your work is for commerial product development you can also arrange support to solve problems in your own code at &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.utasker.com/support.html" rel="nofollow"&gt;http://www.utasker.com/support.html&lt;/A&gt;&lt;SPAN&gt; which may be an alternative in case there are costs and deadlines involved.&lt;/SPAN&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2015 14:26:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419959#M24007</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2015-10-30T14:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Wake from LLS</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419960#M24008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, check if you have this at SystemInit()&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;PMC-&amp;gt;REGSC |= PMC_REGSC_ACKISO_MASK;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 03:50:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Wake-from-LLS/m-p/419960#M24008</guid>
      <dc:creator>bennygoodman</dc:creator>
      <dc:date>2016-01-19T03:50:17Z</dc:date>
    </item>
  </channel>
</rss>

