From e4b744c31d299bd357b3fc2274e9be7c57608dbe Mon Sep 17 00:00:00 2001 From: Betschler <47030413+Betschler@users.noreply.github.com> Date: Mon, 19 May 2025 15:04:42 +0200 Subject: [PATCH] Changed SD frequency to 10000000 to avoid issues with sd cards --- src/M5Stack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/M5Stack.cpp b/src/M5Stack.cpp index c0974047..3703e3c4 100644 --- a/src/M5Stack.cpp +++ b/src/M5Stack.cpp @@ -31,7 +31,7 @@ void M5Stack::begin(bool LCDEnable, bool SDEnable, bool SerialEnable, bool I2CEn // TF Card if (SDEnable == true) { - SD.begin(TFCARD_CS_PIN, SPI, 40000000); + SD.begin(TFCARD_CS_PIN, SPI, 10000000); } // LCD INIT