I-O DATA DEV2 / SDFileSystem

Dependencies:   FATFileSystem

Dependents:   dummy L432KC-log_read

Files at this revision

API Documentation at this revision

Comitter:
hakusan270
Date:
Thu Dec 17 11:25:53 2020 +0000
Parent:
8:7d0c7cd191a9
Commit message:
ff

Changed in this revision

SDFileSystem.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/SDFileSystem.cpp	Sun Oct 18 13:51:36 2020 +0000
+++ b/SDFileSystem.cpp	Thu Dec 17 11:25:53 2020 +0000
@@ -123,9 +123,9 @@
     FATFileSystem(name), _spi(mosi, miso, sclk), _cs(cs), _is_initialized(0) {
     _cs = 1;
 
-    // Set default to 100kHz for initialisation and 1MHz for data transfer
+    // Set default to 100kHz for initialisation and 10MHz for data transfer
     _init_sck = 100000;
-    _transfer_sck = 1000000;
+    _transfer_sck = 10000000;
 }
 
 #define R1_IDLE_STATE           (1 << 0)