Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: FATFileSystem
Dependents: dummy L432KC-log_read
Revision 9:e86488addf61, committed 2020-12-17
- 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)