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 1:6fa3f673d44c, committed 2016-12-06
- Comitter:
- 583405000008
- Date:
- Tue Dec 06 07:22:42 2016 +0000
- Parent:
- 0:9296bb2a98a8
- Commit message:
- d;
Changed in this revision
FATFileSystem.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 9296bb2a98a8 -r 6fa3f673d44c FATFileSystem.cpp --- a/FATFileSystem.cpp Fri Dec 02 19:37:14 2016 +0000 +++ b/FATFileSystem.cpp Tue Dec 06 07:22:42 2016 +0000 @@ -48,7 +48,7 @@ if(_ffs[i] == 0) { _ffs[i] = this; _fsid = i; - debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%d]\n", _name, _fsid); + //debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%d]\n", _name, _fsid); f_mount(i, &_fs); return; } @@ -66,7 +66,7 @@ } FileHandle *FATFileSystem::open(const char* name, int flags) { - debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%d]\n", name, _name, _fsid); + //debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%d]\n", name, _name, _fsid); char n[64]; sprintf(n, "%d:/%s", _fsid, name);