<?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: Function missing after update to NXP::LPC54618_DFP 11.0.0</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858770#M34191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" data-content-finding="Community" data-userid="307966" data-username="gunnarbohlen" href="https://community.nxp.com/people/gunnarbohlen"&gt;Gunnar Bohlen&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thank you for your interest in NXP Semiconductor products and for the opportunity to serve you. &lt;BR /&gt;NXP release the SDK2.5 REL in sync with released ARM CMSIS packs (version: 11.0.0).&lt;BR /&gt;Please go to download the SDK 2.5 via the following link.&lt;BR /&gt;&lt;A href="https://www.nxp.com/support/developer-resources/software-development-tools/mcuxpresso-software-and-tools/mcuxpresso-software-development-kit-sdk:MCUXpresso-SDK"&gt;https://www.nxp.com/support/developer-resources/software-development-tools/mcuxpresso-software-and-tools/mcuxpresso-software-development-kit-sdk:MCUXpresso-SDK&lt;/A&gt;&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, 08 Jan 2019 07:28:24 GMT</pubDate>
    <dc:creator>jeremyzhou</dc:creator>
    <dc:date>2019-01-08T07:28:24Z</dc:date>
    <item>
      <title>Function missing after update to NXP::LPC54618_DFP 11.0.0</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858769#M34190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I updated my project based on LPC54618 to the latest NXP::LPC54618_DFP. This solved some problems, but now I get a new one:&lt;/P&gt;&lt;P&gt;The compiler can't find the function CTIMER_SetupCapture(...) any more.&lt;/P&gt;&lt;P&gt;In fsl_ctimer.c i see:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#if !defined(FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE) &amp;amp;&amp;amp; FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE&lt;/P&gt;&lt;P&gt;void CTIMER_SetupCapture(CTIMER_Type *base,&lt;BR /&gt;&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; ctimer_capture_channel_t capture,&lt;BR /&gt;&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; ctimer_capture_edge_t edge,&lt;BR /&gt;&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; bool enableInt)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;...&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The editor µVision indicates that this function is not compiled.&lt;/P&gt;&lt;P&gt;"FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE" is not defined anywhere, additionally I added&lt;/P&gt;&lt;P&gt;#undef FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE - no change.&lt;/P&gt;&lt;P&gt;I don't really understand the expression. If FSL_... is not defined, is the second expresion "FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE"then really true?&lt;/P&gt;&lt;P&gt;if I do&lt;/P&gt;&lt;P&gt;#define FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE 0&lt;/P&gt;&lt;P&gt;then the second expression will be true, but the first one not any more because it is defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initially I did have another similar problem with access to the ENUM&lt;/P&gt;&lt;P&gt;kCTIMER_Capture_3&lt;/P&gt;&lt;P&gt;This enum is only present if&amp;nbsp; the following expression is true:&lt;/P&gt;&lt;P&gt;#if defined(FSL_FEATURE_CTIMER_HAS_CCR_CAP3) &amp;amp;&amp;amp; FSL_FEATURE_CTIMER_HAS_CCR_CAP3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case I was able to add&lt;/P&gt;&lt;P&gt;#define FSL_FEATURE_CTIMER_HAS_CCR_CAP3&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't undestand why this #define is not already present in the file LPC_54618_features.h&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2019 18:02:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858769#M34190</guid>
      <dc:creator>gunnarbohlen</dc:creator>
      <dc:date>2019-01-07T18:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Function missing after update to NXP::LPC54618_DFP 11.0.0</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858770#M34191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" data-content-finding="Community" data-userid="307966" data-username="gunnarbohlen" href="https://community.nxp.com/people/gunnarbohlen"&gt;Gunnar Bohlen&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thank you for your interest in NXP Semiconductor products and for the opportunity to serve you. &lt;BR /&gt;NXP release the SDK2.5 REL in sync with released ARM CMSIS packs (version: 11.0.0).&lt;BR /&gt;Please go to download the SDK 2.5 via the following link.&lt;BR /&gt;&lt;A href="https://www.nxp.com/support/developer-resources/software-development-tools/mcuxpresso-software-and-tools/mcuxpresso-software-development-kit-sdk:MCUXpresso-SDK"&gt;https://www.nxp.com/support/developer-resources/software-development-tools/mcuxpresso-software-and-tools/mcuxpresso-software-development-kit-sdk:MCUXpresso-SDK&lt;/A&gt;&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, 08 Jan 2019 07:28:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858770#M34191</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2019-01-08T07:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Function missing after update to NXP::LPC54618_DFP 11.0.0</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858771#M34192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi TIC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already have the latest sources which are included in the DFP that I want to use.&lt;/P&gt;&lt;P&gt;What I wanted to say is that I think there is a bug in the file fsl_ctimer.c&lt;/P&gt;&lt;P&gt;The expression&lt;/P&gt;&lt;P&gt;#if !defined(FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE) &amp;amp;&amp;amp; FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE&lt;/P&gt;&lt;P&gt;disables the function "CTIMER_SetupCapture(..)" because it will never be TRUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think a bracket is missing and the expression should be like this:&lt;/P&gt;&lt;P&gt;#if !&lt;STRONG&gt;(&lt;/STRONG&gt;defined(FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE) &amp;amp;&amp;amp; FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE&lt;STRONG&gt;)&lt;/STRONG&gt; // extra brackets added GB 08.01.2019&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can modify my local version of fsl_ctimer.c, but this file is part of the pack and with the next pack-update the problem would be present again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;GB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 11:31:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858771#M34192</guid>
      <dc:creator>gunnarbohlen</dc:creator>
      <dc:date>2019-01-08T11:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Function missing after update to NXP::LPC54618_DFP 11.0.0</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858772#M34193</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="307966" data-username="gunnarbohlen" href="https://community.nxp.com/people/gunnarbohlen" rel="nofollow noopener noreferrer" target="_blank"&gt;Gunnar Bohlen&lt;/A&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;BR /&gt;Yes, there's the typo in the SDK library.&lt;BR /&gt;Actually, it should be corrected as the below illustrates.&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="property macro token"&gt;#if !defined(FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE) &amp;amp;&amp;amp; !defined(FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE)‍&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&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>Wed, 09 Jan 2019 06:31:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858772#M34193</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2019-01-09T06:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Function missing after update to NXP::LPC54618_DFP 11.0.0</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858773#M34194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello TIC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why do you suggest to to a AND of the same expression?&lt;/P&gt;&lt;PRE class=""&gt;&lt;CODE&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;&lt;EM&gt;#if !defined(FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE) &amp;amp;&amp;amp; &lt;/EM&gt;&lt;/STRONG&gt;
&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; !defined(FSL_FEATURE_CTIMER_HAS_NO_INPUT_CAPTURE)&lt;/EM&gt;&lt;/STRONG&gt;

My suggestion (see previous post) was to add a bracket.

Thank you.
GB
&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2019 09:12:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858773#M34194</guid>
      <dc:creator>gunnarbohlen</dc:creator>
      <dc:date>2019-01-11T09:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Function missing after update to NXP::LPC54618_DFP 11.0.0</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858774#M34195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I noticed that there is a new pack NXP::LPC54618_DFP V11.0.1 available.&lt;/P&gt;&lt;P&gt;Why does NXP publish a new pack while already reported bugs in the 11.0.0 are still present?&lt;/P&gt;&lt;P&gt;GB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2019 15:29:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Function-missing-after-update-to-NXP-LPC54618-DFP-11-0-0/m-p/858774#M34195</guid>
      <dc:creator>gunnarbohlen</dc:creator>
      <dc:date>2019-05-08T15:29:50Z</dc:date>
    </item>
  </channel>
</rss>

