<?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 LPC4357 heats up at high frequency ?  in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562803#M16548</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Algorithm on Wed Aug 19 11:31:17 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using LPC4357 chip, I followed the Ramp up instructions on the user manual to raise the frequency to 200 MHz . When the frequency is raised , the chip gets warm but its working fine, I still can touch it as it is not really hot , I wonder if that is normal ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thats my Ramp up code&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;uint32_t status; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Setting the CORE-M4 clock as the IRC (12 MHz)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_EntityConnect(CGU_CLKSRC_IRC,CGU_BASE_M4); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;// Set the XTAL freq &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_SetXTALOSC(12000000U); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Enable the XTAL OSC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_EnableEntity(CGU_CLKSRC_XTAL_OSC,ENABLE); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Reconfiguring PLL1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Setting the PLL1 clock as the XTAL_OSC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_EntityConnect(CGU_CLKSRC_XTAL_OSC,CGU_CLKSRC_PLL1); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Confiugre multipliers &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL|=(1&amp;lt;&amp;lt;0); // Power down temporarily &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(1&amp;lt;&amp;lt;6); // CCO is the feedback divider input clock&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(1&amp;lt;&amp;lt;7); // Direct mode diabled &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(3&amp;lt;&amp;lt;8); // PSEL=0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(3&amp;lt;&amp;lt;12); // Clear NSEL &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL|=(2&amp;lt;&amp;lt;12);// NSEL= 3 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(0xFF&amp;lt;&amp;lt;16); // Clear MSEL &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL|=(49&amp;lt;&amp;lt;16);// MSEL=50 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Turn on PLL1 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(1&amp;lt;&amp;lt;0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&amp;nbsp; wait for PLL1 to lock &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while((LPC_CGU-&amp;gt;PLL1_STAT&amp;amp;1) == 0x0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Connect PLL1 to CORE M4 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_EntityConnect(CGU_CLKSRC_PLL1,CGU_BASE_M4); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for(status=0; status&amp;lt;1000000; status++); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// enable direct mode &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL|=(1&amp;lt;&amp;lt;7); // Direct mode enabled &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 18:47:39 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T18:47:39Z</dc:date>
    <item>
      <title>LPC4357 heats up at high frequency ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562803#M16548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Algorithm on Wed Aug 19 11:31:17 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using LPC4357 chip, I followed the Ramp up instructions on the user manual to raise the frequency to 200 MHz . When the frequency is raised , the chip gets warm but its working fine, I still can touch it as it is not really hot , I wonder if that is normal ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thats my Ramp up code&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;uint32_t status; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Setting the CORE-M4 clock as the IRC (12 MHz)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_EntityConnect(CGU_CLKSRC_IRC,CGU_BASE_M4); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;// Set the XTAL freq &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_SetXTALOSC(12000000U); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Enable the XTAL OSC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_EnableEntity(CGU_CLKSRC_XTAL_OSC,ENABLE); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Reconfiguring PLL1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Setting the PLL1 clock as the XTAL_OSC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_EntityConnect(CGU_CLKSRC_XTAL_OSC,CGU_CLKSRC_PLL1); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Confiugre multipliers &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL|=(1&amp;lt;&amp;lt;0); // Power down temporarily &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(1&amp;lt;&amp;lt;6); // CCO is the feedback divider input clock&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(1&amp;lt;&amp;lt;7); // Direct mode diabled &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(3&amp;lt;&amp;lt;8); // PSEL=0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(3&amp;lt;&amp;lt;12); // Clear NSEL &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL|=(2&amp;lt;&amp;lt;12);// NSEL= 3 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(0xFF&amp;lt;&amp;lt;16); // Clear MSEL &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL|=(49&amp;lt;&amp;lt;16);// MSEL=50 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Turn on PLL1 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL&amp;amp;=~(1&amp;lt;&amp;lt;0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&amp;nbsp; wait for PLL1 to lock &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while((LPC_CGU-&amp;gt;PLL1_STAT&amp;amp;1) == 0x0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Connect PLL1 to CORE M4 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;status=CGU_EntityConnect(CGU_CLKSRC_PLL1,CGU_BASE_M4); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if(status!=CGU_ERROR_SUCCESS) while(1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for(status=0; status&amp;lt;1000000; status++); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// enable direct mode &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_CGU-&amp;gt;PLL1_CTRL|=(1&amp;lt;&amp;lt;7); // Direct mode enabled &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:47:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562803#M16548</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4357 heats up at high frequency ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562804#M16549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bavarian on Thu Aug 20 05:50:00 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I simply assume that not the high frequency warms up the chip but the high current&amp;nbsp;&amp;nbsp; 8-) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The higher you clock the chip, the more power it sucks. The reason for this lies in the relatively large number of peripherals which are switched on after startup. A lot of gates are toggling with a high frequency. So to save power - and to cool down the chip - you need to switch off the blocks you don't need. "Switch off" means that you switch off the clock to these peripherals.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NXP Support Team.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:47:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562804#M16549</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4357 heats up at high frequency ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562805#M16550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Algorithm on Thu Aug 20 07:55:06 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yea bavarian , I know that already, but I used to deal with ST 32-bit chips and I could turn on a lot of peripherals, but the chip did not get hot (180 MHz operation) . So I was just wondering if this is normal for LPC chips or not . &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thx a lot &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:47:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562805#M16550</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4357 heats up at high frequency ?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562806#M16551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mch0 on Sun Aug 23 14:21:30 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately it could(!) be normal.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using several different members of the 43xx series in different configurations (range 4320@96MHz to 4370@200MHz) and at 200 MHz and some peripherals active they all get at least *quite* warm.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;With the 4370@200MHz and both the built-in USB-HS&amp;nbsp; and the&amp;nbsp; HS-ADC turned on it got (and gets) so hot I thought I made some HW-blunder somewhere at first, like exceeding the supply voltage limit or some short circuits.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But when you add up the numbers given in the DS for power consumption it turns out that this amount of heat is to be expected :/&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The good news so far is that none of them has died yet (air cooled &amp;amp; room temp) during "normal" operation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;However, you *can* mess up with the main PLL such that the chip freezes at obviously an out-of-range frequency and during these periods I was really scared about the temperature level reached.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I the lab, I could remove power to get the chip out of the freeze but if that condition persists any amount of time in the field I'd rather not guarantee for a survival.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:47:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4357-heats-up-at-high-frequency/m-p/562806#M16551</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:47:41Z</dc:date>
    </item>
  </channel>
</rss>

