<?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>LPCXpresso IDEのトピックRe: LPC1769 printf</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566966#M18682</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Thu May 12 12:43:20 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Or someone could try to use a computer and a brain:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://www.lmgtfy.com/?q=xbee+serial+speed+115200+problem&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;after 6 hours barking up the wrong tree :mad:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 23:45:27 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T23:45:27Z</dc:date>
    <item>
      <title>LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566956#M18672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lithium on Thu May 12 06:43:42 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi forum users,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to send data through uart port 0, i am also using the function printf.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The communication to my computers works fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I added this function in my main file:&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
int __write (int iFileHandle, uint8_t *pcBuffer, uint8_t iLength)
{
//this function is writing the printf buffer to uart
 UARTSend(0,pcBuffer,iLength);
 return iLength;
}
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have got one problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am sending this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
printf("Setup started \n");
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;SPAN&gt;I receive this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
~.(...6.Setup started
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think something is going wrong because i got those trange characters: ~.(...6.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I made a search but could not find any information related to my problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Could someone help me please?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Lithium&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566956#M18672</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566957#M18673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 10:00:14 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Try wrapping the printf in a loop and send it a few times to see if it occurs more than once.&amp;nbsp; Are you sending this right after UART0 init?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566957#M18673</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566958#M18674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lithium on Thu May 12 10:01:35 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried it in a loop, i got more strange characters.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I use printf after i used uart_init, i am using uart port 0.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566958#M18674</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566959#M18675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 10:10:30 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this on an LPCXpresso 1769 board or a board you have built?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it possible for you to export and post the project here?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566959#M18675</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566960#M18676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lithium on Thu May 12 10:43:49 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;It's an embedded artist board.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Setting the baud rate to 9600 works but that is not a good solution.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566960#M18676</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566961#M18677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 11:20:15 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;To what and how are you connecting&amp;nbsp; UART0.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I can use UART0 up to 921600 baud with my FTDI USB to Serial adapter.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you export code?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566961#M18677</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566962#M18678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by CodeRedSupport on Thu May 12 11:33:35 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lithium&lt;/STRONG&gt;&lt;BR /&gt;It's an embedded artist board.&lt;BR /&gt;Setting the baud rate to 9600 works but that is not a good solution.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm fairly certain that I have run the RDB1768cmsis_UART_printf example as supplied on a EA baseboard before now.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Typically, problems with the UART/USB connector on the EA baseboard are jumper related. Read the EA docs, and see:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://www.embeddedartists.com/support/faq.php?action=showfaq&amp;amp;faqid=43&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CodeRedSupport&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566962#M18678</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566963#M18679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 11:44:46 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lithium&lt;/STRONG&gt;&lt;BR /&gt;It's an embedded artist board.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm confused.:confused:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you using an LPCXpresso1769 and an Embedded Artists Baseboard?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I thought you were only using an LPCXpresso1769.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566963#M18679</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566964#M18680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lithium on Thu May 12 12:06:27 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using this board: &lt;/SPAN&gt;&lt;A href="http://"&gt;http://www.embeddedartists.com/products/lpcxpresso/lpc1769_xpr.php&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am also using an xbee module to connector it wireless to my computer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The baudrate and other settings at the xbee are good.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566964#M18680</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566965#M18681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 12:33:51 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you have a USB to Serial adapter you could try to connect UART0 to the PC directly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This would eliminate the xbee from the equation and would let you know if it is a problem with your xbee to LPC1769 or xbee to PC communications.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry, I don't have an xbee and probably can't help you much more.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566965#M18681</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566966#M18682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Thu May 12 12:43:20 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Or someone could try to use a computer and a brain:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://www.lmgtfy.com/?q=xbee+serial+speed+115200+problem&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;after 6 hours barking up the wrong tree :mad:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566966#M18682</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566967#M18683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lithium on Thu May 12 12:45:40 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I do have an serial usb converter but i do not have a max232 to convert it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2 stop bits does not work for me, tried it at 115200 and 2 stop bits.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am receiving less data.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566967#M18683</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566968#M18684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 13:06:10 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lithium&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;I do have an serial usb converter but i do not have a max232 to convert it.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If it is an FTDI Usb to Serial adapter with ttl levels you can connect UART0 RX and TX directly to the adapter and the USB end to the PCs USB port.&amp;nbsp; You don't need a max232 in this case.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Try that.&amp;nbsp; I think you will find it to be an xbee problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I just noticed Zero's post.:)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You should have been more detail specific in your first post. Mentioning&amp;nbsp; the xbee and what board you were using would have saved us a lot of time in trying to help you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566968#M18684</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1769 printf</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566969#M18685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lithium on Thu May 12 13:28:03 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know if it's an FTD, there is no brand on the converter.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Will do my best to give more details at my first post, thougth it didn't matter because it's just uart sending and the parameters of the extern hardware are good.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPC1769-printf/m-p/566969#M18685</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:29Z</dc:date>
    </item>
  </channel>
</rss>

