<?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>LPC MicrocontrollersのトピックRe: Power down on LPC11u6x</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832787#M33232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This example doesn't seem to switch between RC clock and external clock, is that right? User manual suggest doing so I was wondering if that's absolutely required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Oct 2018 11:07:02 GMT</pubDate>
    <dc:creator>arty</dc:creator>
    <dc:date>2018-10-15T11:07:02Z</dc:date>
    <item>
      <title>Power down on LPC11u6x</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832785#M33230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am doing step-by-step setting-up of putting LPC11u67 device to power-down. However, even after doing everything exactly as I am told by manual, device can't get back from power-down. Maybe my code could provide some things that I understood in a wrong way.&lt;/P&gt;&lt;P&gt;Chip_SYSCTL_EnableStartPin(2); // Getting PIN INT to wake up device&lt;/P&gt;&lt;P&gt;Chip_SYSCTL_EnablePeriphWakeup((1 &amp;lt;&amp;lt; 20) | (1 &amp;lt;&amp;lt; 12)); // GINT0 interrupt wake-up | RTC wake-up&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Not needing BOD and WDT on sleep&lt;/P&gt;&lt;P&gt;Chip_SYSCTL_SetDeepSleepPD(SYSCTL_DEEPSLP_BOD_PD | SYSCTL_DEEPSLP_WDTOSC_PD);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Switching to IRC as main clock&lt;/P&gt;&lt;P&gt;Chip_SYSCTL_PowerUp(SYSCTL_POWERDOWN_IRC_PD);&lt;BR /&gt;/* Wait for at least 580uS for osc to stabilize */&lt;BR /&gt;for (i = 0; i &amp;lt; 2500; i++) {}&lt;/P&gt;&lt;P&gt;Chip_Clock_SetMainClockSource(SYSCTL_MAINCLKSRC_IRC);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Turn on IRC, Flash, SysOsc and PLL on wakeup&lt;/P&gt;&lt;P&gt;Chip_SYSCTL_SetWakeup(~(SYSCTL_SLPWAKE_IRCOUT_PD | SYSCTL_SLPWAKE_IRC_PD | &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SYSCTL_SLPWAKE_FLASH_PD | SYSCTL_SLPWAKE_SYSOSC_PD | &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SYSCTL_SLPWAKE_SYSPLL_PD));&lt;/P&gt;&lt;P&gt;Chip_RTC_SetAlarm(LPC_RTC, Settings.nextHeartbeatTimeStamp);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Go to power down&lt;/P&gt;&lt;P&gt;Chip_PMU_PowerDownState(LPC_PMU);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Setup device from beginning - power on crystal and setup PLL&lt;/P&gt;&lt;P&gt;Chip_SetupXtalClocking();&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2018 13:03:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832785#M33230</guid>
      <dc:creator>arty</dc:creator>
      <dc:date>2018-10-08T13:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Power down on LPC11u6x</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832786#M33231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;BR /&gt;Thank you for your interest in NXP Semiconductor products and for the opportunity to serve you.&lt;BR /&gt;To provide the fastest possible support, I'd highly recommend you to refer to the periph_pmu demo in the &lt;A href="https://www.nxp.com/support/developer-resources/software-development-tools/lpc-developer-resources-/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc11xx:LPCOPEN-SOFTWARE-FOR-LPC11XX"&gt;LPCOpen library.&lt;/A&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 02:29:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832786#M33231</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-10-09T02:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Power down on LPC11u6x</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832787#M33232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This example doesn't seem to switch between RC clock and external clock, is that right? User manual suggest doing so I was wondering if that's absolutely required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2018 11:07:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832787#M33232</guid>
      <dc:creator>arty</dc:creator>
      <dc:date>2018-10-15T11:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Power down on LPC11u6x</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832788#M33233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="300304" data-username="arty" href="https://community.nxp.com/people/arty"&gt;Arturas Jonkus&lt;/A&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;1) This example doesn't seem to switch between RC clock and external clock, is that right?&lt;/P&gt;&lt;P&gt;-- Yes, it's not the absolutely required.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 03:11:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832788#M33233</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-10-16T03:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Power down on LPC11u6x</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832789#M33234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One more thing - on wakeup only certain amount of things are optionally powered back up (IRC, BOD, FLASH, TS, etc.). Does that mean that after wakeup I should reinitialize a device as a whole? Does that mean that my UART which I use for modem handling is not going to work because of wake up? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 07:38:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832789#M33234</guid>
      <dc:creator>arty</dc:creator>
      <dc:date>2018-10-16T07:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Power down on LPC11u6x</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832790#M33235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arturas Jonkus,&lt;BR /&gt;Thanks for your reply.&lt;BR /&gt;1) Does that mean that after wake up I should reinitialize a device as a whole? &lt;BR /&gt;-- No, you needn't do that.&lt;BR /&gt;2)&amp;nbsp; Does that mean that my UART which I use for modem handling is not going to work because of wake up? &lt;BR /&gt;-- No, I don't think so.&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 07:56:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Power-down-on-LPC11u6x/m-p/832790#M33235</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-10-16T07:56:21Z</dc:date>
    </item>
  </channel>
</rss>

