<?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[&lt;SOLVED&gt; M5Stack basic vs gray and SD card]]></title><description><![CDATA[<p dir="auto">hi all<br />
I'm trying to use <a href="https://github.com/tobozo/M5Stack-SD-Updater" target="_blank" rel="noopener noreferrer nofollow ugc">M5Stack-SD-Updater</a>  on M5stack basic (V2.61), but after flashing the M5Stack doesn't see the sd card....<br />
same process on M5Stack gray (v 2.4) works...</p>
<p dir="auto">same behavior if I use M5Burner to burn lovyan launcher on the two controllers... with the same sd card, M5gray can access to sd and M5basic don't</p>
<p dir="auto">I tried four different M5Stack basic unit ... same behavior!!</p>
<p dir="auto">ideas?<br />
tnks a lot!!!</p>
]]></description><link>https://community.m5stack.com/topic/4778/solved-m5stack-basic-vs-gray-and-sd-card</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Apr 2026 20:15:45 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/4778.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 04 Nov 2022 10:51:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &lt;SOLVED&gt; M5Stack basic vs gray and SD card on Sun, 06 Nov 2022 13:40:55 GMT]]></title><description><![CDATA[<p dir="auto">Glad to hear it worked for you too!</p>
]]></description><link>https://community.m5stack.com/post/19220</link><guid isPermaLink="true">https://community.m5stack.com/post/19220</guid><dc:creator><![CDATA[basgoossen]]></dc:creator><pubDate>Sun, 06 Nov 2022 13:40:55 GMT</pubDate></item><item><title><![CDATA[Reply to &lt;SOLVED&gt; M5Stack basic vs gray and SD card on Sun, 06 Nov 2022 11:14:52 GMT]]></title><description><![CDATA[<p dir="auto">in SD.h I changed:</p>
<pre><code>    bool begin(uint8_t ssPin=SS, SPIClass &amp;spi=SPI, uint32_t frequency=4000000, const char * mountpoint="/sd", uint8_t max_files=5, bool format_if_empty=false);
</code></pre>
<p dir="auto">to</p>
<pre><code>    bool begin(uint8_t ssPin=SS, SPIClass &amp;spi=SPI, uint32_t frequency=1000000, const char * mountpoint="/sd", uint8_t max_files=5, bool format_if_empty=false);
</code></pre>
<p dir="auto">and in sd_diskio.cpp:</p>
<pre><code>    if (card-&gt;frequency &gt; 25000000) {
        card-&gt;frequency = 25000000;
    }
</code></pre>
<p dir="auto">to</p>
<pre><code>    if (card-&gt;frequency &gt; 10000000) {
        card-&gt;frequency = 10000000;
    }
</code></pre>
<p dir="auto">.... and now seems to work!!</p>
]]></description><link>https://community.m5stack.com/post/19219</link><guid isPermaLink="true">https://community.m5stack.com/post/19219</guid><dc:creator><![CDATA[cepics]]></dc:creator><pubDate>Sun, 06 Nov 2022 11:14:52 GMT</pubDate></item><item><title><![CDATA[Reply to &lt;SOLVED&gt; M5Stack basic vs gray and SD card on Sun, 06 Nov 2022 10:39:41 GMT]]></title><description><![CDATA[<p dir="auto">I trierd to modify the sd.begin() function in the used SD.h with the new frequency .... but no joy!!</p>
<p dir="auto">still searching......</p>
<p dir="auto">any ideas??</p>
]]></description><link>https://community.m5stack.com/post/19218</link><guid isPermaLink="true">https://community.m5stack.com/post/19218</guid><dc:creator><![CDATA[cepics]]></dc:creator><pubDate>Sun, 06 Nov 2022 10:39:41 GMT</pubDate></item><item><title><![CDATA[Reply to &lt;SOLVED&gt; M5Stack basic vs gray and SD card on Sat, 05 Nov 2022 09:57:40 GMT]]></title><description><![CDATA[<p dir="auto">tnks a lot to answer!!!</p>
<p dir="auto">but I can't find where the M5Stack.cpp file is invoked....</p>
<p dir="auto">mumble mumble...</p>
]]></description><link>https://community.m5stack.com/post/19208</link><guid isPermaLink="true">https://community.m5stack.com/post/19208</guid><dc:creator><![CDATA[cepics]]></dc:creator><pubDate>Sat, 05 Nov 2022 09:57:40 GMT</pubDate></item><item><title><![CDATA[Reply to &lt;SOLVED&gt; M5Stack basic vs gray and SD card on Fri, 04 Nov 2022 21:13:33 GMT]]></title><description><![CDATA[<p dir="auto">I also had some issues with the M5Stack basic and SD cards. I was unable to read 9 out of 10 cards. In the end i ended up slowing down the SD card clock from 40Mhz to 10Mhz, this solved all the read issues for me. You can achieve this by editing the M5Stack.cpp file, in the function M5Stack begin SD is enabled using the following function:</p>
<pre><code>// TF Card
if (SDEnable == true) {
    SD.begin(TFCARD_CS_PIN, SPI, 40000000);
}
</code></pre>
<p dir="auto">I changed this to:</p>
<pre><code>// TF Card
if (SDEnable == true) {
    SD.begin(TFCARD_CS_PIN, SPI, 10000000);
}
</code></pre>
<p dir="auto">Since than i have had no more troubles reading from and writing to the SD card.</p>
]]></description><link>https://community.m5stack.com/post/19200</link><guid isPermaLink="true">https://community.m5stack.com/post/19200</guid><dc:creator><![CDATA[basgoossen]]></dc:creator><pubDate>Fri, 04 Nov 2022 21:13:33 GMT</pubDate></item></channel></rss>