<?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 printf working but vprintf not working in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1591512#M51481</link>
    <description>&lt;P&gt;I have been using the LPC1837 and LPC1769 on two projects, and have been able to print messages to the debug console using printf() but not vprintf().&lt;/P&gt;&lt;P&gt;An example statement I've tried to print is as follows:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;    UT_Printf( "\r\nFRAM: MFG: 0x%4.4X - %4d size  %4d used", FRAM_MANUF_DATA_ADDR,   FRAM_MANUF_DATA_MAX_LEN,   mfgLen );&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;UT_Printf is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;	#ifdef SEMIHOST_ENABLED
    	va_list         ap;
    	// Format the output based on pFormat for Semihosting terminal
    	va_start( ap, pFormat );
    	vprintf( pFormat, ap );
    	va_end( ap );
    	fflush(stdout);
	#endif // SEMIHOST_CODE&lt;/LI-CODE&gt;&lt;P&gt;If I replace vprintf with printf, I see the debug message displayed in the debug console, but with improper values. Can someone explain why vprintf isn't printing to the console?&lt;/P&gt;</description>
    <pubDate>Wed, 01 Feb 2023 17:10:09 GMT</pubDate>
    <dc:creator>ekellmyer</dc:creator>
    <dc:date>2023-02-01T17:10:09Z</dc:date>
    <item>
      <title>printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1591512#M51481</link>
      <description>&lt;P&gt;I have been using the LPC1837 and LPC1769 on two projects, and have been able to print messages to the debug console using printf() but not vprintf().&lt;/P&gt;&lt;P&gt;An example statement I've tried to print is as follows:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;    UT_Printf( "\r\nFRAM: MFG: 0x%4.4X - %4d size  %4d used", FRAM_MANUF_DATA_ADDR,   FRAM_MANUF_DATA_MAX_LEN,   mfgLen );&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;UT_Printf is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;	#ifdef SEMIHOST_ENABLED
    	va_list         ap;
    	// Format the output based on pFormat for Semihosting terminal
    	va_start( ap, pFormat );
    	vprintf( pFormat, ap );
    	va_end( ap );
    	fflush(stdout);
	#endif // SEMIHOST_CODE&lt;/LI-CODE&gt;&lt;P&gt;If I replace vprintf with printf, I see the debug message displayed in the debug console, but with improper values. Can someone explain why vprintf isn't printing to the console?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 17:10:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1591512#M51481</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-01T17:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592064#M51494</link>
      <description>&lt;P&gt;There is a lot of things behind printf(), and depending on your re-targeting it to stdio it will need a lot of stack and heap space. Have you checked that you are not running into buffer overflows, stack overflows and heap overflow? Best if you try it with plenty (&amp;gt;8 KByte) of heap and plenty of MSP Stack (&amp;gt;4 KByte).&lt;/P&gt;&lt;P&gt;Check it with the Heap and Stack Usage, see &lt;A href="https://mcuoneclipse.com/2023/01/29/arm-swo-itm-console-bidirectional-standard-i-o-retargeting/" target="_blank"&gt;https://mcuoneclipse.com/2023/01/29/arm-swo-itm-console-bidirectional-standard-i-o-retargeting/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 07:52:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592064#M51494</guid>
      <dc:creator>ErichStyger</dc:creator>
      <dc:date>2023-02-02T07:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592309#M51503</link>
      <description>&lt;P&gt;Thank you for such a quick response. I just checked the heap and stac&lt;SPAN&gt;k usage and found them both to be NA. Sounds like I'm missing something in my project settings perhaps?&amp;nbsp;&lt;/SPAN&gt;&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="2023-02-02 07_19_32-Greenshot.png" style="width: 511px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/209363i528D7E618C323FEE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-02-02 07_19_32-Greenshot.png" alt="2023-02-02 07_19_32-Greenshot.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 12:23:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592309#M51503</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-02T12:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592311#M51504</link>
      <description>&lt;P&gt;Are you using an older IDE and your application is using FreeRTOS? I reported a bug a while ago, and the recent 11.7.0 has fixed it (I think it was already fixed in 11.6.1 too).&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 12:25:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592311#M51504</guid>
      <dc:creator>ErichStyger</dc:creator>
      <dc:date>2023-02-02T12:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592326#M51505</link>
      <description>&lt;P&gt;I am using IDE version 11.6.1, not using FreeRTOS or any other operating system.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 12:40:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592326#M51505</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-02T12:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592332#M51506</link>
      <description>&lt;P&gt;What that view does is checking for some predefined symbols for heap and memory. Are you using a SDK linker file/project or something different?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 12:51:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1592332#M51506</guid>
      <dc:creator>ErichStyger</dc:creator>
      <dc:date>2023-02-02T12:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1593158#M51523</link>
      <description>&lt;P&gt;I am rather new to this and am not sure what you mean. How should I verify this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2023 13:13:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1593158#M51523</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-03T13:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1593460#M51528</link>
      <description>&lt;P&gt;Check your linker map file. It should have something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;.heap           0x20000064     0x1000
                0x20000064                _pvHeapStart = .
                0x20001064                . = (. + _HeapSize)
 *fill*         0x20000064     0x1000 
                0x20001064                . = ALIGN (0x4)
                0x20001064                _pvHeapLimit = .
                0x00001000                _StackSize = 0x1000

.heap2stackfill
                0x20001064     0x1000
                0x20002064                . = (. + _StackSize)
 *fill*         0x20001064     0x1000 

.stack          0x2000f000        0x0
                0x2000f000                _vStackBase = .
                0x2000f000                . = ALIGN (0x4)
                0x20010000                _vStackTop = (. + _StackSize)
                0x00000000                _image_start = LOADADDR (.text)
                0x00003c34                _image_end = (LOADADDR (.data) + SIZEOF (.data))
                0x00003c34                _image_size = (_image_end - _image_start)&lt;/LI-CODE&gt;&lt;P&gt;It looks like you are using older LPC with no SDK support, otherwise using a NXP SDK example project should have have defined them in the linker .ld files.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Feb 2023 09:07:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1593460#M51528</guid>
      <dc:creator>ErichStyger</dc:creator>
      <dc:date>2023-02-04T09:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1593977#M51535</link>
      <description>&lt;P&gt;The only linker files I have are for my debug configurations. When I made the project, I made a new C/C++ Project, and selected the proper chip and LPCOpen library to include. I did not use an example project.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2023 13:24:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1593977#M51535</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-06T13:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1596161#M51577</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/17173"&gt;@ErichStyger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just follow Erich's suggestion, you can change to MCUXpresso Style in Properties of your project, then can change the size of Heap and Stack, As below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1675913354834.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/210224iC4A5B5CF40C93A8C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1675913354834.png" alt="Alice_Yang_0-1675913354834.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 03:30:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1596161#M51577</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-02-09T03:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1596568#M51582</link>
      <description>&lt;P&gt;Hello Alice,&lt;/P&gt;&lt;P&gt;I applied your suggestion and changed the project Heap and Stack placement to MCUXpresso style. While using 0.00% Heap and 2.34% stack, I still did not see any printed characters in the console.&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="ekellmyer_0-1675944527032.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/210303i198085E9D16F7B43/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ekellmyer_0-1675944527032.png" alt="ekellmyer_0-1675944527032.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 12:08:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1596568#M51582</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-09T12:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1598024#M51619</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/189143"&gt;@ekellmyer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How about have a look at below thread, there is a demo about vprintf:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/LPCXpresso-IDE/LpcXpresso-and-Redlib-vprintf-problems/m-p/549214" target="_blank"&gt;https://community.nxp.com/t5/LPCXpresso-IDE/LpcXpresso-and-Redlib-vprintf-problems/m-p/549214&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 08:49:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1598024#M51619</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-02-13T08:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1598270#M51623</link>
      <description>&lt;P&gt;I have seen this post previously, and it looks like this is an LPCXpresso issue rather than an MCUXpresso issue. LPCXpresso is no longer supported, and I'm not sure what exactly the agreed upon solution was to the post.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 15:23:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1598270#M51623</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-13T15:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1599462#M51642</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/189143"&gt;@ekellmyer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please choose Newlib(nohost) as below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1676451602597.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/210985iCF71649AA2C66291/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1676451602597.png" alt="Alice_Yang_0-1676451602597.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I test on my side, it can work well:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_1-1676451722424.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/210986i0A490220AC83CD16/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_1-1676451722424.png" alt="Alice_Yang_1-1676451722424.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2023 09:02:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1599462#M51642</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-02-15T09:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600464#M51654</link>
      <description>&lt;P&gt;I changed my library to Newlib nohost with no success. In the image you provided, it looks like you redirected the output to a terminal over UART. My goal is to display the text in the console view in MCUXpresso.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 12:12:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600464#M51654</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-16T12:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600472#M51655</link>
      <description>&lt;P&gt;When using Newlib(semihost) and MCUXpresso Style Heap and Stack Placement, I am able to get out a single debug message to the console. vprintf() returns -1, indicating an error occurred, and all messages after the first one do not appear in the console. Any thoughts on this?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 12:44:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600472#M51655</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-16T12:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600476#M51656</link>
      <description>&lt;P&gt;I did not initially notice this, but the last word of the vprintf() statement is printed twice.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ekellmyer_0-1676552604279.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/211214i1519F2BA01E851FD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ekellmyer_0-1676552604279.png" alt="ekellmyer_0-1676552604279.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;vprintf() returns -1 and all subsequent print statements do not show in the console.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 13:04:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600476#M51656</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-16T13:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600521#M51657</link>
      <description>&lt;P&gt;Further testing has shown that the print statement is appending the last 5 characters in the string to the end of the string... Not sure what is going on here... It also looks like the spacing between size and 31 is too large for what is specified in the string.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ekellmyer_0-1676558079902.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/211222i43ED6557EEA482A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ekellmyer_0-1676558079902.png" alt="ekellmyer_0-1676558079902.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 14:34:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600521#M51657</guid>
      <dc:creator>ekellmyer</dc:creator>
      <dc:date>2023-02-16T14:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: printf working but vprintf not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600935#M51664</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/189143"&gt;@ekellmyer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Display the text in the console using Newlib(Semihost).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alice&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 07:14:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/printf-working-but-vprintf-not-working/m-p/1600935#M51664</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-02-17T07:14:34Z</dc:date>
    </item>
  </channel>
</rss>

