thomasgds changed
Fork of FATFileSystem by
Revision 10:45955234200f, committed 2016-10-25
- Comitter:
- thomasgds
- Date:
- Tue Oct 25 05:27:50 2016 +0000
- Parent:
- 3:e960e2b81a3c
- Commit message:
- sd file system changed
Changed in this revision
FATFileSystem.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r e960e2b81a3c -r 45955234200f FATFileSystem.cpp --- a/FATFileSystem.cpp Mon Mar 17 14:09:00 2014 +0000 +++ b/FATFileSystem.cpp Tue Oct 25 05:27:50 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);