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.
Diff: SDFileSystem.h
- Revision:
- 23:6bb3c1987511
- Parent:
- 22:3fa5eaf48e81
--- a/SDFileSystem.h Wed Feb 24 17:46:31 2016 +0000 +++ b/SDFileSystem.h Wed Apr 13 16:51:25 2016 +0000 @@ -173,6 +173,7 @@ enum Command { CMD0 = (0x40 | 0), /**< GO_IDLE_STATE */ CMD1 = (0x40 | 1), /**< SEND_OP_COND */ + CMD6 = (0x40 | 6), /**< SWITCH_FUNC */ CMD8 = (0x40 | 8), /**< SEND_IF_COND */ CMD9 = (0x40 | 9), /**< SEND_CSD */ CMD12 = (0x40 | 12), /**< STOP_TRANSMISSION */ @@ -218,6 +219,7 @@ bool readBlocks(char* buffer, unsigned int lba, unsigned int count); bool writeBlock(const char* buffer, unsigned int lba); bool writeBlocks(const char* buffer, unsigned int lba, unsigned int count); + bool enableHighSpeedMode(); }; #endif