Revised to support both SD and USB file system

Dependents:   Multi-FileSystem Multi-FileSystem

Fork of MSCFileSystem by Chris Styles

Files at this revision

API Documentation at this revision

Comitter:
WiredHome
Date:
Sun Mar 13 19:13:50 2016 +0000
Parent:
8:c65b3b101292
Child:
10:4072b4b1c6f4
Commit message:
comment diagnostic messages to disable them appearing on from stdout.

Changed in this revision

MSCFileSystem.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/MSCFileSystem.cpp	Sat Mar 12 23:59:02 2016 +0000
+++ b/MSCFileSystem.cpp	Sun Mar 13 19:13:50 2016 +0000
@@ -80,8 +80,8 @@
         fprintf(stderr, "Could not initialize mass storage interface: %d\r\n", rc);
         return rc;
     }
-    printf("Successfully initialized mass storage interface; %d blocks of size %d\r\n", _numBlks, _blkSize);
-    print_inquiry(inquiryResult);
+    //printf("Successfully initialized mass storage interface; %d blocks of size %d\r\n", _numBlks, _blkSize);
+    //print_inquiry(inquiryResult);
     // FATFileSystem supports only 512-byte blocks
     return _blkSize == 512 ? OK : 1;
 }