Tapton school eds robot project mbed2
Fork of FATFileSystem by
Revision 10:22960b1cb122, committed 2017-01-11
- Comitter:
- matt8174
- Date:
- Wed Jan 11 11:12:32 2017 +0000
- Parent:
- 9:e2ab678eb692
- Commit message:
- 1
Changed in this revision
FATFileSystem.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/FATFileSystem.cpp Sat Jul 30 20:47:51 2016 +0000 +++ b/FATFileSystem.cpp Wed Jan 11 11:12:32 2017 +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", getName(), _fsid); + //debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%s]\n", getName(), _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, getName(), _fsid); + //debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%s]\n", name, getName(), _fsid); char n[64]; sprintf(n, "%s:/%s", _fsid, name);