<?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 Re: Using C++ with Kinetis Studio - SDK 2.0 project in Kinetis Design Studio</title>
    <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664698#M8802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello fsa,&lt;/P&gt;&lt;P&gt;- Please download the latest&amp;nbsp; sdk version&amp;nbsp; "SDK_2.2_FRDM-KL25Z"&lt;/P&gt;&lt;P&gt;from &lt;A class="link-titled" href="https://mcuxpresso.nxp.com/en/welcome" title="https://mcuxpresso.nxp.com/en/welcome"&gt;Welcome to MCUXpresso | MCUXpresso Config Tools&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Install the KDS update about New Kinetis SDK 2.x Project Wizard :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/15683i1014A6579A15908A/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create a new project based on SDK , there is no error when build , I have test it on my side .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Alice Yang&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>Fri, 24 Mar 2017 06:09:57 GMT</pubDate>
    <dc:creator>Alice_Yang</dc:creator>
    <dc:date>2017-03-24T06:09:57Z</dc:date>
    <item>
      <title>Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664692#M8796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class=""&gt;&lt;P&gt;Hello guys, I've just started using Kinetis SDK.&lt;/P&gt;&lt;P&gt;I downloaded SDK_2.1_FRDM-KL25Z folder from kex.nxp.com&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a new project using&lt;/P&gt;&lt;P&gt;File -&amp;gt; Kinetis SDK 2.x Project&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However while creating project I was never asked what compiler should be used nor is it&amp;nbsp; C or C++ project.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the source folder there is a following code:&lt;/P&gt;&lt;P&gt;[code]&lt;/P&gt;&lt;P&gt;#include &amp;lt;string.h&amp;gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#include "board.h"&lt;BR /&gt;#include "pin_mux.h"&lt;BR /&gt;#include "clock_config.h"&lt;BR /&gt;/*#include "fsl_debug_console.h"*/&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* FreeRTOS kernel includes. */&lt;BR /&gt;#include "FreeRTOS.h"&lt;BR /&gt;#include "task.h"&lt;BR /&gt;#include "queue.h"&lt;BR /&gt;#include "timers.h"&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/* Task priorities. */&lt;BR /&gt;#define hello_task_PRIORITY (configMAX_PRIORITIES - 1)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*!&lt;BR /&gt;&amp;nbsp;* @brief Task responsible for printing of "Hello world." message.&lt;BR /&gt;&amp;nbsp;*/&lt;BR /&gt;static void hello_task(void *pvParameters) {&lt;BR /&gt;&amp;nbsp; for (;;) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/*PRINTF("Hello world.\r\n");*/&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Add your code here */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vTaskSuspend(NULL);&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;}&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*!&lt;BR /&gt;&amp;nbsp;* @brief Application entry point.&lt;BR /&gt;&amp;nbsp;*/&lt;BR /&gt;int main(void) {&lt;BR /&gt;&amp;nbsp; /* Init board hardware. */&lt;BR /&gt;&amp;nbsp; BOARD_InitPins();&lt;BR /&gt;&amp;nbsp; BOARD_BootClockRUN();&lt;BR /&gt;&amp;nbsp; BOARD_InitDebugConsole();&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* Add your code here */&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* Create RTOS task */&lt;BR /&gt;&amp;nbsp; xTaskCreate(hello_task, "Hello_task", configMINIMAL_STACK_SIZE, NULL, hello_task_PRIORITY, NULL);&lt;BR /&gt;&amp;nbsp; vTaskStartScheduler();&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; for(;;) { /* Infinite loop to avoid leaving the main function */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; __asm("NOP"); /* something to use as a breakpoint stop while looping */&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;}&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[/code]&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After trying the build the project from&lt;/P&gt;&lt;P&gt;Project -&amp;gt; Build all I get the following error (in the picture attached)&lt;/P&gt;&lt;P&gt;Also If I try to run the program it says that 'Binary could not be found'&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am really not familiar with eclipse so if someone could help me I am stuck with googleing whole day this problem.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Big thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://postimg.org/image/grdbldxl1" title="https://postimg.org/image/grdbldxl1"&gt;step 1 — Postimage.org&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://postimg.cc/image/472hohe1p/" title="https://postimg.cc/image/472hohe1p/"&gt;kinetis error — Postimage.org&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2017 14:14:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664692#M8796</guid>
      <dc:creator>simplethings</dc:creator>
      <dc:date>2017-03-20T14:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664693#M8797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi fsa saf,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you use FreeRTOS, you should use device with 16KB of RAM or more. Devices with smaller RAM are not recommended.&lt;/P&gt;&lt;P&gt;It might be possible to manually tune the project for specific use-cases, but this use case is not supported by NewProjectWizard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2017 15:38:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664693#M8797</guid>
      <dc:creator>MarekTrmac</dc:creator>
      <dc:date>2017-03-21T15:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664694#M8798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am aware of that I am using FreeRTOS on AVR ATmega devices.&lt;/P&gt;&lt;P&gt;However could you provide me link on how to make a C++ project in Kinetis Design studio I have never used it in my life and I have board which I cannot use because of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2017 17:46:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664694#M8798</guid>
      <dc:creator>simplethings</dc:creator>
      <dc:date>2017-03-21T17:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664695#M8799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello fsa,&lt;/P&gt;&lt;P&gt;- For the C++ code on project , please&amp;nbsp; add the below code&lt;/P&gt;&lt;PRE class="language-c"&gt;&lt;CODE&gt;&lt;SPAN class="property macro token"&gt;#ifdef __cplusplus&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;extern&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"C"&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&lt;SPAN class="property macro token"&gt;#endif&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; &lt;/SPAN&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; &lt;SPAN class="comment token"&gt;/* your C++ codes*/&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;SPAN class="property macro token"&gt;#ifdef __cplusplus&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;/* extern "C" */&lt;/SPAN&gt;
&lt;SPAN class="property macro token"&gt;#endif‍‍‍‍‍‍‍‍‍&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;As this case &lt;A href="https://community.nxp.com/message/859161" rel="nofollow noopener noreferrer" target="_blank"&gt;https://community.nxp.com/message/859161&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;nbsp; About your this question , does it&amp;nbsp; happen when you just create a new FreeRTOS project on KSDK ?&lt;/P&gt;&lt;P&gt;If not, could you please share your project with me, I will check it on my side .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Alice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 09:57:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664695#M8799</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2017-03-22T09:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664696#M8800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have just tried to make a new SDK 2.0 project without FreeRTOS, I don't get error 'Binary not found'.&lt;/P&gt;&lt;P&gt;But instead I get to choose these 3 launch configurations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;[url=&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fpostimg.org%2Fimage%2Fqqa1sh60r%2F%5D%5Bimg%5Dhttps%3A%2F%2Fs9.postimg.org%2F908d7fsfz%2FWithout_Free_RTOS.jpg%5B%2Fimg%5D%5B%2Furl%5D%5Burl%3Dhttps%3A%2F%2Fpostimage.org%2F%5Dgifs" rel="nofollow" target="_blank"&gt;https://postimg.org/image/qqa1sh60r/][img]https://s9.postimg.org/908d7fsfz/Without_Free_RTOS.jpg[/img][/url][url=https://postimage.org/]gifs&lt;/A&gt;&lt;SPAN&gt; upload[/url]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I select any of those 3 configurations nothings happens and if I try to run again project same thing happens over again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems like Binary not found is related to a project that includes FreeRTOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also in link you provided, you suggested to rename file.c into file.cpp&lt;/P&gt;&lt;P&gt;This happens when I try to rename it&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;[url=&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fpostimg.org%2Fimage%2Fidcy0lj81%2F%5D%5Bimg%5Dhttps%3A%2F%2Fs16.postimg.org%2Frxwknh8k5%2FFile_Rename_From_Cto_CPP.jpg%5B%2Fimg%5D%5B%2Furl%5D%5Burl%3Dhttps%3A%2F%2Fpostimage.org%2F%5Dimgurl%5B%2Furl" rel="nofollow" target="_blank"&gt;https://postimg.org/image/idcy0lj81/][img]https://s16.postimg.org/rxwknh8k5/File_Rename_From_Cto_CPP.jpg[/img][/url][url=https://postimage.org/]imgurl[/url&lt;/A&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would you like from me to share project with you, is there a way to upload files on the forum?&lt;/P&gt;&lt;P&gt;I uploaded FreeRTOS project files to my github profile&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/IvanAntunovic/KinetisFreeRTOS/tree/master" title="https://github.com/IvanAntunovic/KinetisFreeRTOS/tree/master"&gt;GitHub - IvanAntunovic/KinetisFreeRTOS&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 20:23:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664696#M8800</guid>
      <dc:creator>simplethings</dc:creator>
      <dc:date>2017-03-22T20:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664697#M8801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="WithoutFreeRTOS.JPG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/15646i8B3042CC17B6776D/image-size/large?v=v2&amp;amp;px=999" role="button" title="WithoutFreeRTOS.JPG" alt="WithoutFreeRTOS.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;That is what I get after not choosing FreeRTOS and trying to run a project, I don't get any error building it&lt;IMG alt="" class="image-2 jive-image" src="https://postimg.org/image/idcy0lj81/8b947bda/" style="max-width: 620px; height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 20:36:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664697#M8801</guid>
      <dc:creator>simplethings</dc:creator>
      <dc:date>2017-03-22T20:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664698#M8802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello fsa,&lt;/P&gt;&lt;P&gt;- Please download the latest&amp;nbsp; sdk version&amp;nbsp; "SDK_2.2_FRDM-KL25Z"&lt;/P&gt;&lt;P&gt;from &lt;A class="link-titled" href="https://mcuxpresso.nxp.com/en/welcome" title="https://mcuxpresso.nxp.com/en/welcome"&gt;Welcome to MCUXpresso | MCUXpresso Config Tools&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Install the KDS update about New Kinetis SDK 2.x Project Wizard :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/15683i1014A6579A15908A/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create a new project based on SDK , there is no error when build , I have test it on my side .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Alice Yang&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>Fri, 24 Mar 2017 06:09:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664698#M8802</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2017-03-24T06:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664699#M8803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I followed your instructions,&lt;/P&gt;&lt;P&gt;So I have created new SDK 2.0 Project&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture.JPG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/16122iA306FE16B0811367/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture2.JPG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/16164iA44960F3CBA6A8A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.JPG" alt="Capture2.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This image happens when I try to run the project after building it.&lt;/P&gt;&lt;P&gt;I am not sure what should I choose from this launch configuration?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if I create C++ Project and build it and then run it I get this error:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture3.JPG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/16201iF0B67835EDE72BC4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture3.JPG" alt="Capture3.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2017 07:27:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664699#M8803</guid>
      <dc:creator>simplethings</dc:creator>
      <dc:date>2017-03-29T07:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664700#M8804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Fsa,&lt;/P&gt;&lt;P&gt;What about your debug firmware on your board ,&amp;nbsp; OpenOCD , PE or J-link ?&lt;/P&gt;&lt;P&gt;Please select the right one refer to your firmware :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/16797i68E116D46CAD2602/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(right your project -&amp;gt;debug AS -. debug configuration ...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About the three debug mode introduce and configuration , please check&lt;/P&gt;&lt;P&gt;KDS_Users_Guide.pdf -&amp;gt; 2.5 Debugging Projects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Alice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2017 09:58:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664700#M8804</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2017-03-29T09:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using C++ with Kinetis Studio - SDK 2.0 project</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664701#M8805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone again, so at one point I just gave up ARM microcontrollers and kept working with my old good buddies, AVRs. I want to give Kinetis Design and ARM MCUs another chance. So basically I managed to successfully add new SDK 2.0 C/C++ project, and it builded with no errors.&lt;/P&gt;&lt;P&gt;I have followed the KSD_USERS_Guide.pdf that you attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Kinetis_debugger_settings.JPG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/16418iC0BD05D5B5F92F5E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Kinetis_debugger_settings.JPG" alt="Kinetis_debugger_settings.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So I have installed GDB PEMicro drivers and set up all the data in Kinetis Design Debugger Options as described in the pdf. There are several MCU&amp;nbsp;&lt;STRONG&gt;Targets,&amp;nbsp;&lt;/STRONG&gt;I have tried to enter Bootloader and clicked on of the HTMLs :&amp;nbsp;&lt;A class="link-titled" href="http://www.nxp.com/products/developer-resources/hardware-development-tools/freedom-development-boards/freedom-development-platform-for-kinetis-kl14-kl15-kl24-kl25-mcus:FRDM-KL25Z?&amp;amp;tid=vanFRDM-KL25Z" title="http://www.nxp.com/products/developer-resources/hardware-development-tools/freedom-development-boards/freedom-development-platform-for-kinetis-kl14-kl15-kl24-kl25-mcus:FRDM-KL25Z?&amp;amp;tid=vanFRDM-KL25Z"&gt;FRDM-KL25Z|Freedom Development Platform|Kinetis MCU|NXP&lt;/A&gt;&amp;nbsp;. Seems like my board is KL25Z&lt;STRONG&gt;128M4.&lt;/STRONG&gt;&amp;nbsp;My MCU is plugged in, but under&amp;nbsp;&lt;STRONG&gt;Port label&amp;nbsp;&lt;/STRONG&gt;I cannot see any devices.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to run debug but I get the following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Kinetis_debugging.JPG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/16472iCE5F200B249CDD31/image-size/large?v=v2&amp;amp;px=999" role="button" title="Kinetis_debugging.JPG" alt="Kinetis_debugging.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two days ago I changed my bootloader to mbed, since I was able to successfully flash my MCU with mbed platform. Maybe I do need to install bootloader version from:&amp;nbsp;&lt;A class="link-titled" href="http://www.pemicro.com/opensda/index.cfm" title="http://www.pemicro.com/opensda/index.cfm"&gt;PEmicro - P&amp;amp;E Microcomputer Systems: Over 30 years as an Industry leader in Embedded Systems Development Tools, debug pr…&lt;/A&gt;&amp;nbsp;in order to run debugging in KDS?&lt;/P&gt;&lt;P&gt;I have the following hardware information on my board:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;Board Name is: FRDM-KL25Z&lt;BR /&gt; MicroBoot Kernel Version is: 1.03&lt;BR /&gt; Bootloader Version is: 1.05&lt;BR /&gt; Application Version is: 0.00&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;Besides debugging, is there a possibility like in Atmel Studio to flash compiled code on MCU directly from KDS?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;About creating FreeRTOS project. I tried to create FreeRTOS project, however I am not able to build the project. There seems to be errors in &lt;STRONG&gt;makefile&lt;/STRONG&gt;&amp;nbsp;and&amp;nbsp;&lt;STRONG&gt;tasks.c&amp;nbsp;&lt;/STRONG&gt;files&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: black; font-size: small;"&gt;makefile&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;# Tool invocations&lt;BR /&gt;KL25Z_FreeRTOS.elf: $(OBJS) $(USER_OBJS)&lt;BR /&gt; @echo 'Building target: $@' &amp;nbsp;&lt;STRONG&gt; // This line of the script that is in red and it doesn't tell anything&lt;/STRONG&gt;&lt;BR /&gt; @echo 'Invoking: Cross ARM C++ Linker'&lt;BR /&gt; arm-none-eabi-g++ -mcpu=cortex-m0plus -mthumb -O0 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -g3 -T "../MKL25Z128xxx4_flash.ld" -Xlinker --gc-sections -Wl,-Map,"KL25Z_FreeRTOS.map" --specs=nano.specs -specs=nosys.specs -Xlinker -z -Xlinker muldefs -o "KL25Z_FreeRTOS.elf" $(OBJS) $(USER_OBJS) $(LIBS)&lt;BR /&gt; @echo 'Finished building target: $@'&lt;BR /&gt; @echo ' '&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;&lt;STRONG&gt;in tasks.c&amp;nbsp;&lt;/STRONG&gt;I have several undefined references to function calls of methods&amp;nbsp;&lt;STRONG&gt;portRESET_READY_PRIORITY and port_RECORD_READY_PRIORITY&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;I have created FreeRTOS project as&amp;nbsp;&lt;STRONG&gt;File-&amp;gt;New-&amp;gt;Kinetis SDK 2.x project -&amp;gt; checked on the right side "All drivers and RTOS " boxes &amp;amp; chose under "&lt;EM&gt;Processors&amp;nbsp;&lt;/EM&gt;-&amp;gt; New MKL25Z128xxx4 project"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: small;"&gt;Best regards.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2017 20:32:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Using-C-with-Kinetis-Studio-SDK-2-0-project/m-p/664701#M8805</guid>
      <dc:creator>simplethings</dc:creator>
      <dc:date>2017-08-08T20:32:34Z</dc:date>
    </item>
  </channel>
</rss>

