<?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のトピックRe: 625k baud rate with S08</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246888#M19709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefano,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried in the past at 250k of baud rate with an S08 MCU, and even at this rate, you are spending a lot of time executing the interrupt to handle your data. Thus, the performance of the other parts of the application are affected. I think 625k can't be imagine with an S08 device.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To achieve this kind of baud rate I recommend you to look after Kinetis KL04/KL05 which are really efficient. Moreover they have DMA which can be interesting for you to not spent to much time executing you interrupt code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 May 2013 08:36:43 GMT</pubDate>
    <dc:creator>Joel69003</dc:creator>
    <dc:date>2013-05-25T08:36:43Z</dc:date>
    <item>
      <title>625k baud rate with S08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246885#M19706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to comunicate by serial interface SCI at 625K of baud rate with 5V MCU.&lt;/P&gt;&lt;P&gt;I know the S08 processor and I have see the MP16 family&lt;/P&gt;&lt;P&gt;I can work at baud rate 625k with this processor, using a exteral quarz of 51 MHz ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 09:33:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246885#M19706</guid>
      <dc:creator>IlConte</dc:creator>
      <dc:date>2013-05-20T09:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: 625k baud rate with S08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246886#M19707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the SCI uses a 16x clock divider, so you would need a bus multiple of 10MHz (20MHz multiple for external crystal), so the highest allowed, without going over the max, would be 40MHz (external).&amp;nbsp; (Whether or not you can have sustained comms at this rate, however, depends very much on your coding.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 16:18:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246886#M19707</guid>
      <dc:creator>tonyp</dc:creator>
      <dc:date>2013-05-20T16:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: 625k baud rate with S08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246887#M19708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further to the comment by Tony P, the maximum allowable &lt;SPAN style="text-decoration: underline;"&gt;crystal&lt;/SPAN&gt; frequency is 16 MHz - to achieve an external input frequency of 40 MHz, you would need to use an oscillator module having a square wave output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume that you were intending to use FBE mode, to give a CPU clock of 40MHz, and a bus clock of 20MHz.&amp;nbsp; However, it is also feasible to achieve the same CPU and bus frequencies using a lower frequency crystal (FEE mode), or using the trimmed internal reference (FEI mode).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For FEE mode, the crystal frequency would need to be a "power of two" multiple of 39.0625 kHz.&amp;nbsp; A crystal frequency of 5.0MHz or 10.0MHz would be suitable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For FEI mode, the internal reference would need to be trimmed to a frequency of 39.0625 kHz.&amp;nbsp; The stability of the internal reference should be adequate for normal SCI operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For a baud rate of 625k, the transmission period will be 16 microseconds per byte.&amp;nbsp; For a 40MHz CPU bus, this corresponds to 640 cycles.&amp;nbsp; The processing time for the handling of each received byte must not exceed this value, otherwise overrun errors will occur, and data will be lost.&amp;nbsp; It also means that all other interrupts would most likely need to be disabled during the SCI receive process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mac&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 May 2013 19:28:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246887#M19708</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2013-05-21T19:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: 625k baud rate with S08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246888#M19709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefano,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried in the past at 250k of baud rate with an S08 MCU, and even at this rate, you are spending a lot of time executing the interrupt to handle your data. Thus, the performance of the other parts of the application are affected. I think 625k can't be imagine with an S08 device.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To achieve this kind of baud rate I recommend you to look after Kinetis KL04/KL05 which are really efficient. Moreover they have DMA which can be interesting for you to not spent to much time executing you interrupt code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 May 2013 08:36:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/625k-baud-rate-with-S08/m-p/246888#M19709</guid>
      <dc:creator>Joel69003</dc:creator>
      <dc:date>2013-05-25T08:36:43Z</dc:date>
    </item>
  </channel>
</rss>

