<?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中的主题 How to separate the core code from the application</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1965725#M56942</link>
    <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;As part of my application, I am using LPC55S69 microcontroller. At this moment, I am developing the code based on the LPC55S69 SDK code.&lt;/P&gt;&lt;P&gt;When I pulled the SDK code, it also contained the core code. But I would like to separate it into 2 separate folders like shown below,&lt;/P&gt;&lt;P&gt;myapplication -&amp;gt; Contains my application code, I will link to core code for the required header files and other sources on the MCUXpresso IDE&lt;/P&gt;&lt;P&gt;core -&amp;gt; Contains the core code, includes pin configurations and many other&lt;/P&gt;&lt;P&gt;Can someone please let me know, how to do this?&lt;/P&gt;&lt;P&gt;I already tried doing it, but I am seeing and error, so don't know what I am missing.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#error SERIAL_PORT_TYPE_UART, SERIAL_PORT_TYPE_USBCDC, SERIAL_PORT_TYPE_SWO, SERIAL_PORT_TYPE_VIRTUAL, and SERIAL_PORT_TYPE_BLE_WU should not be cleared at same time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;San&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Oct 2024 15:05:55 GMT</pubDate>
    <dc:creator>sushmasan</dc:creator>
    <dc:date>2024-10-02T15:05:55Z</dc:date>
    <item>
      <title>How to separate the core code from the application</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1965725#M56942</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;As part of my application, I am using LPC55S69 microcontroller. At this moment, I am developing the code based on the LPC55S69 SDK code.&lt;/P&gt;&lt;P&gt;When I pulled the SDK code, it also contained the core code. But I would like to separate it into 2 separate folders like shown below,&lt;/P&gt;&lt;P&gt;myapplication -&amp;gt; Contains my application code, I will link to core code for the required header files and other sources on the MCUXpresso IDE&lt;/P&gt;&lt;P&gt;core -&amp;gt; Contains the core code, includes pin configurations and many other&lt;/P&gt;&lt;P&gt;Can someone please let me know, how to do this?&lt;/P&gt;&lt;P&gt;I already tried doing it, but I am seeing and error, so don't know what I am missing.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#error SERIAL_PORT_TYPE_UART, SERIAL_PORT_TYPE_USBCDC, SERIAL_PORT_TYPE_SWO, SERIAL_PORT_TYPE_VIRTUAL, and SERIAL_PORT_TYPE_BLE_WU should not be cleared at same time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;San&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 15:05:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1965725#M56942</guid>
      <dc:creator>sushmasan</dc:creator>
      <dc:date>2024-10-02T15:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate the core code from the application</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1969038#M56974</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;Can someone please suggest me about this?&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;San&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 14:53:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1969038#M56974</guid>
      <dc:creator>sushmasan</dc:creator>
      <dc:date>2024-10-08T14:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate the core code from the application</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1969245#M56978</link>
      <description>&lt;P&gt;Do you mean&amp;nbsp;&lt;SPAN&gt;myapplication&amp;nbsp;is in a completely different directory from the other code?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In MCUXpressoIDE, you can make an SDK example project, and then import the myapplication folder as a `linked folder` and it will compile, but not be copied into the core folder.&lt;/P&gt;&lt;P&gt;You also have to set the paths and symbols so the myapplication folder is in the list of include directories so the core code can find it.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 20:38:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1969245#M56978</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-08T20:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate the core code from the application</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1969652#M56984</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Can you clarify your question?&lt;/P&gt;
&lt;P&gt;do you want to create a directory which includes multiple *.c and *.h. If it is the case, it is okay, you can add the path in the project as the following fig.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xiangjun_rong_0-1728458975589.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/303668i081CA9F02A83189A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xiangjun_rong_0-1728458975589.png" alt="xiangjun_rong_0-1728458975589.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Xiangjun Rong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2024 07:30:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1969652#M56984</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2024-10-09T07:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate the core code from the application</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1970416#M56993</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;Let me clarify with few more details.&lt;/P&gt;&lt;P&gt;I would like to see the directory structure like this, let's say 3 folders&lt;/P&gt;&lt;P&gt;&amp;lt;my_application&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;LPC55S69_Core&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;freeRTOS&amp;gt;&lt;/P&gt;&lt;P&gt;my_application requires core (contains pin configuration, clock configuration changes) and freeRTOS.&lt;/P&gt;&lt;P&gt;So the question is, how can I achieve by keeping LPC55S69_core/freeRTOS code separately?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2024 20:53:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1970416#M56993</guid>
      <dc:creator>sushmasan</dc:creator>
      <dc:date>2024-10-09T20:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate the core code from the application</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1971047#M57000</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You can add the group like the fig.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xiangjun_rong_0-1728542535845.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/303948i6F6C4BBF959E7C3F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xiangjun_rong_0-1728542535845.png" alt="xiangjun_rong_0-1728542535845.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The red means right-mouse clicking.&lt;/P&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2024 06:43:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1971047#M57000</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2024-10-10T06:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate the core code from the application</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1971442#M57010</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/26034"&gt;@xiangjun_rong&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Sorry, yesterday while posting the query I missed to add one thing.&lt;/P&gt;&lt;P&gt;I mentioned 3 separate folders, but they are 3 separate projects in one workspace.&lt;/P&gt;&lt;P&gt;My application can be build independently but dependent on LPC_core and FreeRTOS.&lt;/P&gt;&lt;P&gt;LPC core can be build independently.&lt;/P&gt;&lt;P&gt;FreeRTOS can be build independently.&lt;/P&gt;&lt;P&gt;In order to do this, what are all the specific components needs to be considered for LPC core and FreeRTOS from the SDK?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;San&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2024 14:41:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1971442#M57010</guid>
      <dc:creator>sushmasan</dc:creator>
      <dc:date>2024-10-10T14:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate the core code from the application</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1976248#M57096</link>
      <description>&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/26034"&gt;@xiangjun_rong&lt;/a&gt;&amp;nbsp;, Sorry, that's now what I was looking for.&lt;BR /&gt;But I was able to separate LPC55S69 core, and Free RTOS code from my application and able to build it.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 16:44:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-separate-the-core-code-from-the-application/m-p/1976248#M57096</guid>
      <dc:creator>sushmasan</dc:creator>
      <dc:date>2024-10-17T16:44:02Z</dc:date>
    </item>
  </channel>
</rss>

