<?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[T-sim7600E don&#x27;t recognize SD card]]></title><description><![CDATA[<p dir="auto">Hello, I try to read SD files on the T-SIM7600E, but I have only "Card Mount Failed".<br />
in my config file I have<br />
#include "FS.h"<br />
#include "SD.h"<br />
#include "SPI.h"<br />
#define SD_MISO           2<br />
#define SD_MOSI           15<br />
#define SD_SCLK           14<br />
#define SD_CS               13</p>
<p dir="auto">and in my setup</p>
<p dir="auto">SPI.begin(SD_SCLK, SD_MISO, SD_MOSI, SD_CS);</p>
<p dir="auto">if(!SD.begin(SD_CS)){<br />
Serial.println("Card Mount Failed");<br />
return;<br />
}<br />
uint8_t cardType = SD.cardType();</p>
<pre><code>if(cardType == CARD_NONE){
    Serial.println("No SD card attached");
    return;
}
</code></pre>
<p dir="auto">When I run the sketch it stops at "Card mount failed"</p>
<p dir="auto">I have tested with several SD card with a Fat32 format.<br />
Any idea about the problem<br />
Regards<br />
Papbo</p>
]]></description><link>https://www.community.lilygo.cc/topic/29/t-sim7600e-don-t-recognize-sd-card</link><generator>RSS for Node</generator><lastBuildDate>Sun, 07 Jun 2026 23:19:28 GMT</lastBuildDate><atom:link href="https://www.community.lilygo.cc/topic/29.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 20 Dec 2021 15:58:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 25 May 2022 01:08:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/32">@papbo</a> What is your current ESP32 version? Try upgrading?</p>
]]></description><link>https://www.community.lilygo.cc/post/160</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/160</guid><dc:creator><![CDATA[Sukaibin]]></dc:creator><pubDate>Wed, 25 May 2022 01:08:20 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 22 Dec 2021 17:31:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/25">@caz</a> Of course all is ok regarding UART communication...I canuse the GPS mode, the GPRS mode, wifi...AT commands , send and receive SMS..but unable to read and write to the SD card<br />
Regards<br />
Papbo</p>
]]></description><link>https://www.community.lilygo.cc/post/81</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/81</guid><dc:creator><![CDATA[papbo]]></dc:creator><pubDate>Wed, 22 Dec 2021 17:31:27 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 22 Dec 2021 17:14:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/32">@papbo</a> Does you code have serial port initilization code?</p>
<p dir="auto">// Set console baud rate<br />
SerialMon.begin(115200);<br />
delay(10);</p>
<p dir="auto">// Set GSM module baud rate<br />
SerialAT.begin(UART_BAUD, SERIAL_8N1, MODEM_RX, MODEM_TX);</p>
]]></description><link>https://www.community.lilygo.cc/post/80</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/80</guid><dc:creator><![CDATA[Caz]]></dc:creator><pubDate>Wed, 22 Dec 2021 17:14:55 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 22 Dec 2021 16:24:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/25">@caz</a> It is exactly what I have in my sketch (look at my first post)<br />
Thanks<br />
Rehards<br />
Papbo</p>
]]></description><link>https://www.community.lilygo.cc/post/79</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/79</guid><dc:creator><![CDATA[papbo]]></dc:creator><pubDate>Wed, 22 Dec 2021 16:24:35 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 22 Dec 2021 16:02:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/32">@papbo</a> AllFunctions.ino has following code.</p>
<p dir="auto">//Initialize SDCard<br />
SPI.begin(SD_SCLK, SD_MISO, SD_MOSI, SD_CS);<br />
if (!SD.begin(SD_CS)) {<br />
Serial.println("SDCard MOUNT FAIL");<br />
} else {<br />
uint32_t cardSize = SD.cardSize() / (1024 * 1024);<br />
String str = "SDCard Size: " + String(cardSize) + "MB";<br />
Serial.println(str);<br />
}</p>
]]></description><link>https://www.community.lilygo.cc/post/78</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/78</guid><dc:creator><![CDATA[Caz]]></dc:creator><pubDate>Wed, 22 Dec 2021 16:02:43 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 22 Dec 2021 15:59:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/25">@caz</a> hello, do you have a sketch to test the SD card on the SIM7600...other than the examples (they are  not working here)<br />
Regards<br />
Papbo</p>
]]></description><link>https://www.community.lilygo.cc/post/77</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/77</guid><dc:creator><![CDATA[papbo]]></dc:creator><pubDate>Wed, 22 Dec 2021 15:59:55 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 22 Dec 2021 14:52:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/25">@caz</a> Yes The SD is on the right side..</p>
]]></description><link>https://www.community.lilygo.cc/post/76</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/76</guid><dc:creator><![CDATA[papbo]]></dc:creator><pubDate>Wed, 22 Dec 2021 14:52:56 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 22 Dec 2021 14:36:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/32">@papbo</a> How do you attache the SD? Does its contact side face to the board? Its connector is not fail safe.</p>
]]></description><link>https://www.community.lilygo.cc/post/75</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/75</guid><dc:creator><![CDATA[Caz]]></dc:creator><pubDate>Wed, 22 Dec 2021 14:36:19 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Wed, 22 Dec 2021 13:54:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://www.community.lilygo.cc/uid/25">@caz</a> Hello,<br />
Thanks for your reply.<br />
Unfortunately I have tested my board with all the different exemples from the Arduino library and the result are always the same "SD card mount fail".<br />
I have formated the various SD card  on Windows 10 and MAC OS as FAt32 with the same result.<br />
Regards<br />
Papbo</p>
]]></description><link>https://www.community.lilygo.cc/post/74</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/74</guid><dc:creator><![CDATA[papbo]]></dc:creator><pubDate>Wed, 22 Dec 2021 13:54:27 GMT</pubDate></item><item><title><![CDATA[Reply to T-sim7600E don&#x27;t recognize SD card on Mon, 20 Dec 2021 17:38:09 GMT]]></title><description><![CDATA[<p dir="auto">I successfully read SD card on my sim7600g, I mean I have "SDCard Size: 3789MB" when I run examples/Arduino_TinyGSM/AllFunctions/AllFunctions.ino. The SD card is formatted as FAT32 on Windows 10, no partition. I suggest to run one of examples such as AllFunctions.ino first.</p>
]]></description><link>https://www.community.lilygo.cc/post/68</link><guid isPermaLink="true">https://www.community.lilygo.cc/post/68</guid><dc:creator><![CDATA[Caz]]></dc:creator><pubDate>Mon, 20 Dec 2021 17:38:09 GMT</pubDate></item></channel></rss>