<?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: Control the MCU to VLLS3 power mode.</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224537#M4282</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ping,&lt;/P&gt;&lt;P&gt;I already read the demo code for lowpower, but it does not have the VLLS3. It just contains Run, VLPR, STOP and&amp;nbsp; LLS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Sep 2013 13:22:54 GMT</pubDate>
    <dc:creator>danielchai</dc:creator>
    <dc:date>2013-09-17T13:22:54Z</dc:date>
    <item>
      <title>Control the MCU to VLLS3 power mode.</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224533#M4278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have cw10.4 and MQX4.0.1. And I add some code in my main task to control the MK60FN1M0VLQ12 to enter the VLLS3 power mode.&lt;/P&gt;&lt;P&gt;The code is as following:&lt;/P&gt;&lt;P&gt;MCG_C6 &amp;amp;= ~(0x20u);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/* Write to PMPROT to allow VLLS3 power modes */&lt;/P&gt;&lt;P&gt;SMC_PMPROT = SMC_PMPROT_AVLLS_MASK;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/* Set the STOPM field to 0b100 for VLLS3 mode*/&lt;/P&gt;&lt;P&gt;SMC_PMCTRL &amp;amp;= ~(SMC_PMCTRL_STOPM_MASK);&lt;/P&gt;&lt;P&gt;SMC_PMCTRL |=&amp;nbsp; SMC_PMCTRL_STOPM(0x4) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;SMC_VLLSCTRL =&amp;nbsp; SMC_VLLSCTRL_VLLSM(3);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // set VLLSM = 0b11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Now execute the stop instruction to go into VLLS3 */&lt;/P&gt;&lt;P&gt;SCB_SCR |= SCB_SCR_SLEEPDEEP_MASK;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;asm("WFI");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_task_block();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I measure the current drop from MCU, it does not enter the VLLS3 mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions about this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 15:59:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224533#M4278</guid>
      <dc:creator>danielchai</dc:creator>
      <dc:date>2013-09-10T15:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Control the MCU to VLLS3 power mode.</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224534#M4279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your code is ok. I have a sample code of enter VLLS3 and you can have a try. I'm looking forward to your reply.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/39995iE0891BC12FEEDF66/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.jpg" alt="1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ping Zhou&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 09:12:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224534#M4279</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2013-09-11T09:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Control the MCU to VLLS3 power mode.</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224535#M4280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Ping,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After I make it enter the VLLS3 mode, how should I set it wake up?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use MQX4.0.1. When should I edit the wake up code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 16:47:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224535#M4280</guid>
      <dc:creator>danielchai</dc:creator>
      <dc:date>2013-09-16T16:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Control the MCU to VLLS3 power mode.</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224536#M4281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;The LLWU module allows the user to select up to 16 external pin sources and up to 8&lt;/P&gt;&lt;P&gt;internal modules as a wakeup source from low-leakage power modes.So I suggest you can go &lt;/P&gt;&lt;P&gt;throgh the Chapter 16 Low-Leakage Wakeup Unit (LLWU) of K60 reference manual, then you can reference&lt;/P&gt;&lt;P&gt;a demo code through the C:\Freescale\Freescale_MQX_4_0\mqx\examples\lowpower.&lt;/P&gt;&lt;P&gt;Good luck for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ping.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2013 07:11:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224536#M4281</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2013-09-17T07:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Control the MCU to VLLS3 power mode.</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224537#M4282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ping,&lt;/P&gt;&lt;P&gt;I already read the demo code for lowpower, but it does not have the VLLS3. It just contains Run, VLPR, STOP and&amp;nbsp; LLS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2013 13:22:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224537#M4282</guid>
      <dc:creator>danielchai</dc:creator>
      <dc:date>2013-09-17T13:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Control the MCU to VLLS3 power mode.</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224538#M4283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hi Daniel,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Yes, the demo code doesn't include VLLS3, however wake source setting for LLS is as similar with VLLS3.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I think the most important thing for you currently is to understand the mode operation of&amp;nbsp; LLWU unit.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 02:36:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Control-the-MCU-to-VLLS3-power-mode/m-p/224538#M4283</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2013-09-18T02:36:09Z</dc:date>
    </item>
  </channel>
</rss>

