<?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: LPC55S28 ADC SDK POWER_DisablePD missing?</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1552666#M50682</link>
    <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/208213"&gt;@BertrandR&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for the feedback, we will let the team in charge know, for upcoming updates.&lt;/P&gt;
&lt;P&gt;For the moment, you could look up the examples, they might help you as a guide.&lt;/P&gt;
&lt;P&gt;Regards, Raul.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Nov 2022 16:04:05 GMT</pubDate>
    <dc:creator>RaRo</dc:creator>
    <dc:date>2022-11-11T16:04:05Z</dc:date>
    <item>
      <title>LPC55S28 ADC SDK POWER_DisablePD missing?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1550936#M50657</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Context : I am a fully newby on NXP microcontroller. I purchased a dev board ( LPC55S28-EVK) and start playing with peripheral to check how to use it.&lt;/P&gt;&lt;P&gt;For ADC peripheral, I just place a potentiometer on pin 20 ( ADC0_P). I test the SDK example and it works. So my hardware configuration is ok.&lt;/P&gt;&lt;P&gt;Now, with my own project : I configure pin, configure clock and try to setup peripheral on MCUexpression config tool as interrupt mode. Code has been generated automatically with the config tool.&lt;/P&gt;&lt;P&gt;During first tries, interrupt occurs well but the result was always 32768.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I compare all configuration register with SDK sample and seems ok.&lt;/P&gt;&lt;P&gt;After a while, I see that the following ADC power up was missing&lt;/P&gt;&lt;P&gt;/* Disable LDOGPADC power down */&lt;BR /&gt;POWER_DisablePD(kPDRUNCFG_PD_LDOGPADC);&lt;/P&gt;&lt;P&gt;Is it normal that is is not automatically generated by the configuration tool?&lt;/P&gt;&lt;P&gt;Bertrand&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 09:17:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1550936#M50657</guid>
      <dc:creator>BertrandR</dc:creator>
      <dc:date>2022-11-09T09:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S28 ADC SDK POWER_DisablePD missing?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1552226#M50668</link>
      <description>&lt;P class="lia-align-justify"&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/208213"&gt;@BertrandR&lt;/a&gt;,&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;First of all, welcome to the community.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Related with your question, ConfigTools only modify certain parts of your project, not all of it.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;ConfigTools -&amp;gt; Peripherals only modify board\peripherals.c and board\peripherals.h; ConfigTools -&amp;gt; Clocks only modify board\clock_config.c and board\clock_config.h; and ConfigTools -&amp;gt; Pins only modify board\pin_mux.c and board\pin_mux.h. You can watch what part of your code are you generating in ConfigTools -&amp;gt; Overview -&amp;gt; Generated code.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RaulRomero_0-1668111505640.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/199920i25DC0339404D8F49/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RaulRomero_0-1668111505640.png" alt="RaulRomero_0-1668111505640.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;The line you are missing is at main, so any of your ConfigTools configuration won't generate the disable LDOGPADC power down line [POWER_DisablePD(kPDRUNCFG_PD_LDOGPADC)] in your project.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Best regards, Raul.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 20:19:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1552226#M50668</guid>
      <dc:creator>RaRo</dc:creator>
      <dc:date>2022-11-10T20:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S28 ADC SDK POWER_DisablePD missing?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1552233#M50670</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Many thanks for your answer. I understand, but it could be very usefull to indicate what we have to add by our own ( like it is done for Interrupt Callback...). It could be indicated in the sdk manual ( I don't find it) or add as a comment block in peripheral.c or .h.&lt;/P&gt;&lt;P&gt;My 2 cts.&lt;/P&gt;&lt;P&gt;Bertrand&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't find the indication about what is not include in the generated code in the SDK manual&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 20:50:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1552233#M50670</guid>
      <dc:creator>BertrandR</dc:creator>
      <dc:date>2022-11-10T20:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S28 ADC SDK POWER_DisablePD missing?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1552666#M50682</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/208213"&gt;@BertrandR&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for the feedback, we will let the team in charge know, for upcoming updates.&lt;/P&gt;
&lt;P&gt;For the moment, you could look up the examples, they might help you as a guide.&lt;/P&gt;
&lt;P&gt;Regards, Raul.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 16:04:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1552666#M50682</guid>
      <dc:creator>RaRo</dc:creator>
      <dc:date>2022-11-11T16:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S28 ADC SDK POWER_DisablePD missing?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1596577#M51583</link>
      <description>&lt;P&gt;Naaaa, that's a bug.&lt;/P&gt;&lt;P&gt;Just recently MCUXpresso IDE v11.7.0 has been released and with it an updated set of Config Tools v13.&lt;/P&gt;&lt;P&gt;Now Peripheral Tool adds this line to the ADC0 init function in &lt;FONT face="courier new,courier"&gt;peripherals.c&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Seems this bug has been fixed.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 12:14:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S28-ADC-SDK-POWER-DisablePD-missing/m-p/1596577#M51583</guid>
      <dc:creator>danielholala</dc:creator>
      <dc:date>2023-02-09T12:14:43Z</dc:date>
    </item>
  </channel>
</rss>

