<?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>MPC5xxx中的主题 Need printf() for MPC5675EVB</title>
    <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231321#M76</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to run a benchmark on my MPC5675EVB using the CW 2.10 SE tools for MPC55xx/MPC56xx.&amp;nbsp; After the calculations are completed, I want to print the results to the console, but my printf statement fails to link with &lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link Error: undefined: InitializeUART&lt;/P&gt;&lt;P&gt;Project: MPC5675K_Test.mcp, Target RAM&lt;/P&gt;&lt;P&gt;Referenced from '__init_uart_console' in MSL_C.PPCEABI.base.V.UC.a&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link Error: undefined: ReadUARTN&lt;/P&gt;&lt;P&gt;Project: MPC5675K_Test.mcp, Target RAM&lt;/P&gt;&lt;P&gt;Referenced from '__read_console' in MSL_C.PPCEABI.base.V.UC.a&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link Error: undefined: WriteUARTN&lt;/P&gt;&lt;P&gt;Project: MPC5675K_Test.mcp, Target RAM&lt;/P&gt;&lt;P&gt;Referenced from '__write_console' in MSL_C.PPCEABI.base.V.UC.a&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I doing wrong?&amp;nbsp; Am I failing to add a library?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Jun 2013 17:36:31 GMT</pubDate>
    <dc:creator>matthewclark</dc:creator>
    <dc:date>2013-06-20T17:36:31Z</dc:date>
    <item>
      <title>Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231321#M76</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to run a benchmark on my MPC5675EVB using the CW 2.10 SE tools for MPC55xx/MPC56xx.&amp;nbsp; After the calculations are completed, I want to print the results to the console, but my printf statement fails to link with &lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link Error: undefined: InitializeUART&lt;/P&gt;&lt;P&gt;Project: MPC5675K_Test.mcp, Target RAM&lt;/P&gt;&lt;P&gt;Referenced from '__init_uart_console' in MSL_C.PPCEABI.base.V.UC.a&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link Error: undefined: ReadUARTN&lt;/P&gt;&lt;P&gt;Project: MPC5675K_Test.mcp, Target RAM&lt;/P&gt;&lt;P&gt;Referenced from '__read_console' in MSL_C.PPCEABI.base.V.UC.a&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link Error: undefined: WriteUARTN&lt;/P&gt;&lt;P&gt;Project: MPC5675K_Test.mcp, Target RAM&lt;/P&gt;&lt;P&gt;Referenced from '__write_console' in MSL_C.PPCEABI.base.V.UC.a&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I doing wrong?&amp;nbsp; Am I failing to add a library?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2013 17:36:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231321#M76</guid>
      <dc:creator>matthewclark</dc:creator>
      <dc:date>2013-06-20T17:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231322#M77</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to define the functions, preferably in a source file that's in your source path. &lt;/P&gt;&lt;P&gt;__init_uart_console()&amp;nbsp; // Initialize the uart (baud rate, pins, etc.)&lt;/P&gt;&lt;P&gt;__read_console()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Read console; example: for ( count of specified bytes ) { wait until new char received; byte[i] = that char}&lt;/P&gt;&lt;P&gt;__write_console()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Write console: for( all bytes in buffer ) { UARTD = byte[ i ]; wait for tx done }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, if you don't want to bother with any UART setup, you can download &lt;STRONG&gt;CW 10.4 SE&lt;/STRONG&gt; and use the ewl_c_hosted (a.k.a. "Debugger Console") option when you go through the new project wizard and are prompted for the I/O options.&amp;nbsp; This will send all printf output to the "Console tab".&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/message/323234"&gt;Re: Undefined InitializeUART, ReadUARTN, WriteUARTN&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope thi helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: the "SE" version of codewarrior restricts the size of code you can download, so just be forewarned about that.&amp;nbsp; From my experience, I've noticed that a C project including &amp;lt;stdio.h&amp;gt; will fit no problem, but a&lt;STRONG&gt; C++&lt;/STRONG&gt; project including the same header won't... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2013 18:11:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231322#M77</guid>
      <dc:creator>admin</dc:creator>
      <dc:date>2013-06-20T18:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231323#M78</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I pulled down the CW 10.4 SE and tried to create a new Bareboard Project, but I'm never offered I/O options, ewl_c_hosted or otherwise, in the wizard.&amp;nbsp; Is there another way to access them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2013 20:32:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231323#M78</guid>
      <dc:creator>matthewclark</dc:creator>
      <dc:date>2013-06-20T20:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231324#M79</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh darn, maybe it's hardware specific.&amp;nbsp; For example, when working the Kinetis family of boards, there's this screen:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Ewl_hosted.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/119504iD87D5DAE63A464AD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Ewl_hosted.jpg" alt="Ewl_hosted.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Are you able to see this screen if you right click on your project and select properties?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, then I guess the UART route will have to be pursued. &lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jun 2013 05:50:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231324#M79</guid>
      <dc:creator>admin</dc:creator>
      <dc:date>2013-06-21T05:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231325#M80</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, alas.&amp;nbsp; I don't have a "Librarian" option, at least for the bareboard project I'm trying to create.&amp;nbsp; I guess I'll have to do it the hard way.&amp;nbsp; Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jun 2013 15:01:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231325#M80</guid>
      <dc:creator>matthewclark</dc:creator>
      <dc:date>2013-06-21T15:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231326#M81</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached are the files (uart.c, uart.h) that implements UART terminal low level functions.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;You can use in in combination with CodeWarrior Classic project (MSL libraries). &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Simply include them into your project. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;The UART init. requires Fsys set to 180MHz. &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;If your clock is different you will need to adjust Init_LINFlex_0() function to get proper 115200 baudrate. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LINFlex0 is routed to upper SCI RS232 cannon connector.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Hope it it helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Stan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 12:06:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231326#M81</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2013-07-18T12:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231327#M82</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was *finally* able to get to trying this code, but I seem to be running to a snag.&amp;nbsp; I'm crashing immediately when I run the following line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;static void Init_LINFlex_0 (void)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;{&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* enter INIT mode */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;LINFLEX_0.LINCR1.R = 0x0081; /* SLEEP=0, INIT=1 */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* wait for the INIT mode */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt; &lt;SPAN style="color: #ff0000;"&gt;while (0x1000 != (LINFLEX_0.LINSR.R &amp;amp; 0xF000)) {}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure what its problem is, only that I immediately jump to IVOR1trap upon its execution.&amp;nbsp; I'm running my MPC5675KEVB board in LSM, but otherwise have not not changed any of its default settings.&amp;nbsp; Do you have any idea what could be going wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 19:02:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231327#M82</guid>
      <dc:creator>matthewclark</dc:creator>
      <dc:date>2013-12-17T19:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231328#M83</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Matt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suspect this issue could be caused by the fact Mode Entry module is not correctly initialized on your side.&lt;/P&gt;&lt;P&gt;Can you double check the MCU enters Run mode and LIN module is enabled to be active in run mode?&lt;/P&gt;&lt;P&gt;e.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ME.RUNPC[0].R = 0x000000FE; /* enable peripherals run in all modes */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ME.LPPC[0].R = 0x00000000;&amp;nbsp; /* disable peripherals run in LP modes */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;/* Mode Transition to enter RUN0 mode: */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ME.RUN[0].R = 0x001F00F0;&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; /* RUN0 cfg: 16MHzIRCON,OSC0ON,PLL0ON,PLL1ON,syclk=16M IRC */&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ME.MCTL.R = 0x40005AF0;&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; /* Enter RUN0 Mode &amp;amp; Key */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ME.MCTL.R = 0x4000A50F;&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; /* Enter RUN0 Mode &amp;amp; Inverted Key */&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; while (1 == ME.GS.B.S_MTRANS) {}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Wait for mode transition to complete */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; while(4 != ME.GS.B.S_CURRENTMODE) {};&amp;nbsp; /* Check RUN0 mode has been entered */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:28:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231328#M83</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2014-01-07T16:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231329#M84</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stan,&lt;/P&gt;&lt;P&gt;can you elaborate more how and where you included these files to get the problem solved.&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;I am facing the same issue, did anyone got the solution for the same please?&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;I am using CW 5.9.0 , powerPC platform. Below are the error... Need help&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Link Error : undefined: 'InitializeUART'&lt;BR /&gt;Referenced from '__init_uart_console' in MSL_C.PPCEABI.bare.E.UC.a&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Link Error : undefined: 'ReadUARTN'&lt;BR /&gt;Referenced from '__read_console' in MSL_C.PPCEABI.bare.E.UC.a&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Link Error : undefined: 'WriteUARTN'&lt;BR /&gt;Referenced from '__write_console' in MSL_C.PPCEABI.bare.E.UC.a&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Appreciated the help.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Thanks,&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;-Mohammed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2019 05:28:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231329#M84</guid>
      <dc:creator>mohammedzakari1</dc:creator>
      <dc:date>2019-06-19T05:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231330#M85</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ho Mohammed,&lt;/P&gt;&lt;P&gt;You need to add implementations of these functions into your project.&lt;/P&gt;&lt;P&gt;You can adjust and the files "uart.c" and "uart.h" from e.g. this example into your project:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-333894"&gt;https://community.nxp.com/docs/DOC-333894&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2019 12:45:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231330#M85</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2019-06-24T12:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need printf() for MPC5675EVB</title>
      <link>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231331#M86</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you Stan, that helps,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2019 06:09:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/Need-printf-for-MPC5675EVB/m-p/231331#M86</guid>
      <dc:creator>mohammedzakari1</dc:creator>
      <dc:date>2019-06-25T06:09:03Z</dc:date>
    </item>
  </channel>
</rss>

