<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Maximum serial speed limited to 500000 baud?]]></title><description><![CDATA[<p dir="auto">Can somebody confirm that the maximum "Serial" speed is limited to 500000 baud?<br />
As soon I set it to 1000000 or 2000000 it stops outputting to the console.<br />
I have another ESP32 board, which is using a CH340 as UART-USB bridge, and this one is working fine on 2000000 baud.<br />
Is it a limitation of the CP210x chip used in the M5Stack?<br />
I'm using a M5Stack Grey.</p>
<p dir="auto">Working:</p>
<p dir="auto">void setup() {<br />
M5.begin();<br />
Serial.begin(500000);</p>
<p dir="auto">Not working:</p>
<p dir="auto">void setup() {<br />
M5.begin();<br />
Serial.begin(2000000);</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://community.m5stack.com/topic/1775/maximum-serial-speed-limited-to-500000-baud</link><generator>RSS for Node</generator><lastBuildDate>Tue, 28 Apr 2026 21:00:11 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/1775.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 19 Mar 2020 09:24:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Maximum serial speed limited to 500000 baud? on Sat, 28 Nov 2020 18:28:26 GMT]]></title><description><![CDATA[<p dir="auto">I stumbled on this restriction again, and dug a bit deeper in the issue.<br />
It appears that the hardware is not limiting the baudrate, but the M5Stack library. More specifically,  M5.begin();<br />
Luckily, you can skip the UART init, and do it yourself like this:</p>
<p dir="auto">M5.begin(true,true,false);<br />
Serial.begin(2000000);<br />
Serial.flush();</p>
<p dir="auto">And now it works for 2000000 baud.</p>
]]></description><link>https://community.m5stack.com/post/10916</link><guid isPermaLink="true">https://community.m5stack.com/post/10916</guid><dc:creator><![CDATA[GunterO]]></dc:creator><pubDate>Sat, 28 Nov 2020 18:28:26 GMT</pubDate></item></channel></rss>