<?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>8-bit Microcontrollersのトピックcould You suggest me a serial application?</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/could-You-suggest-me-a-serial-application/m-p/136949#M4549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi everybody,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I would like to do a serial application with my hcs08 demo board. I'd like something not so hard to do involving SCI, transmitter/receiver buffers and possibly software flow control. Could you suggest such application?&lt;/DIV&gt;&lt;DIV&gt;Another thing: if I set my pc serial port flow control to Xon/Xoff, should I have to write software that checks for Xon/Xoff char to start/stop flow or this is done automatically from the operating system?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks for Your help&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Nov 2006 23:48:08 GMT</pubDate>
    <dc:creator>Nefertum</dc:creator>
    <dc:date>2006-11-16T23:48:08Z</dc:date>
    <item>
      <title>could You suggest me a serial application?</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/could-You-suggest-me-a-serial-application/m-p/136949#M4549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi everybody,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I would like to do a serial application with my hcs08 demo board. I'd like something not so hard to do involving SCI, transmitter/receiver buffers and possibly software flow control. Could you suggest such application?&lt;/DIV&gt;&lt;DIV&gt;Another thing: if I set my pc serial port flow control to Xon/Xoff, should I have to write software that checks for Xon/Xoff char to start/stop flow or this is done automatically from the operating system?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks for Your help&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 23:48:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/could-You-suggest-me-a-serial-application/m-p/136949#M4549</guid>
      <dc:creator>Nefertum</dc:creator>
      <dc:date>2006-11-16T23:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: could You suggest me a serial application?</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/could-You-suggest-me-a-serial-application/m-p/136950#M4550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Why not start with&amp;nbsp;communications to a&amp;nbsp;terminal window and enter commands to toggle an LED on an eval bd.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;If you have an extra serial port, I like to add control from a terminal window to my apps for testing...&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;BadDad&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 05:10:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/could-You-suggest-me-a-serial-application/m-p/136950#M4550</guid>
      <dc:creator>baddad</dc:creator>
      <dc:date>2006-11-22T05:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: could You suggest me a serial application?</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/could-You-suggest-me-a-serial-application/m-p/136951#M4551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Hello,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;All flow control arrangements for the MCU end will need to be specifically written, to take into account&amp;nbsp;your chosen&amp;nbsp;size of&amp;nbsp;receive buffer.&amp;nbsp; At the PC end, assuming you are using some sort of terminal program to provide the communications, flow control will happen, if it is enabled.&amp;nbsp; Unless you are sending or receiving data strings that can exceed the receive buffer size at either end, flow control won't normally occur, even if enabled at the PC end.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;For interactive communications, with manually entered commands, where the MCU would generate a response to each command, it is unlikely that flow control would ever&amp;nbsp;be needed.&amp;nbsp; In this case, the MCU receive buffer would be of sufficient size to hold the command line data, and command processing would commence on completion of the command entry.&amp;nbsp; In this case, it is likely you would want to "echo" each character as it is received.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Regards,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Mac&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 09:46:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/could-You-suggest-me-a-serial-application/m-p/136951#M4551</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2006-11-22T09:46:43Z</dc:date>
    </item>
  </channel>
</rss>

