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.
Fork of FATFileSystem by
Revision 10:cb3ece806dc4, committed 2016-12-28
- Comitter:
- Ownasaurus
- Date:
- Wed Dec 28 23:22:09 2016 +0000
- Parent:
- 5:b3b3370574cf
- Commit message:
- first release
Changed in this revision
FATFileSystem.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/FATFileSystem.cpp Thu Aug 13 10:15:39 2015 +0100 +++ b/FATFileSystem.cpp Wed Dec 28 23:22:09 2016 +0000 @@ -49,7 +49,7 @@ _ffs[i] = this; _fsid[0] = '0' + i; _fsid[1] = '\0'; - debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%s]\n", _name, _fsid); + //debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%s]\n", _name, _fsid); f_mount(&_fs, _fsid, 0); return; } @@ -67,7 +67,7 @@ } FileHandle *FATFileSystem::open(const char* name, int flags) { - debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%s]\n", name, _name, _fsid); + //debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%s]\n", name, _name, _fsid); char n[64]; sprintf(n, "%s:/%s", _fsid, name);