Audio usb

Fork of MSCFileSystem by Chris Styles

Revision:
8:8071d6c9aeb0
Parent:
0:3e7d2baed4b4
--- a/MSCFileSystem.cpp	Mon Jul 23 09:59:06 2012 +0000
+++ b/MSCFileSystem.cpp	Thu Apr 03 01:25:16 2014 +0000
@@ -22,40 +22,40 @@
 {
     // see USB Mass Storage Class – UFI Command Specification,
     // 4.2 INQUIRY Command
-    printf("Inquiry reply:\n");
+    printf("Inquiry reply:\n\r");
     uint8_t tmp = inqReply[0]&0x1F;
-    printf("Peripheral device type: %02Xh\n", tmp);
+    printf("Peripheral device type: %02Xh\n\r", tmp);
     if ( tmp == 0 )
-        printf("\t- Direct access (floppy)\n");
+        printf("\t- Direct access (floppy)\n\r");
     else if ( tmp == 0x1F )
-        printf("\t- none (no FDD connected)\n");
+        printf("\t- none (no FDD connected)\n\r");
     else
-        printf("\t- unknown type\n");
+        printf("\t- unknown type\n\r");
     tmp = inqReply[1] >> 7;
-    printf("Removable Media Bit: %d\n", tmp);
+    printf("Removable Media Bit: %d\n\r", tmp);
     tmp = inqReply[2] & 3;
-    printf("ANSI Version: %02Xh\n", tmp);
+    printf("ANSI Version: %02Xh\n\r", tmp);
     if ( tmp != 0 )
-        printf("\t- warning! must be 0\n");
+        printf("\t- warning! must be 0\n\r");
     tmp = (inqReply[2]>>3) & 3;
-    printf("ECMA Version: %02Xh\n", tmp);
+    printf("ECMA Version: %02Xh\n\r", tmp);
     if ( tmp != 0 )
-        printf("\t- warning! should be 0\n");
+        printf("\t- warning! should be 0\n\r");
     tmp = inqReply[2]>>6;
-    printf("ISO Version: %02Xh\n", tmp);
+    printf("ISO Version: %02Xh\n\r", tmp);
     if ( tmp != 0 )
-        printf("\t- warning! should be 0\n");
+        printf("\t- warning! should be 0\n\r");
     tmp = inqReply[3] & 0xF;
-    printf("Response Data Format: %02Xh\n", tmp);
+    printf("Response Data Format: %02Xh\n\r", tmp);
     if ( tmp != 1 )
-        printf("\t- warning! should be 1\n");
+        printf("\t- warning! should be 1\n\r");
     tmp = inqReply[4];
-    printf("Additional length: %02Xh\n", tmp);
+    printf("Additional length: %02Xh\n\r", tmp);
     if ( tmp != 0x1F )
-        printf("\t- warning! should be 1Fh\n");
-    printf("Vendor Information: '%.8s'\n", &inqReply[8]);
-    printf("Product Identification: '%.16s'\n", &inqReply[16]);
-    printf("Product Revision: '%.4s'\n", &inqReply[32]);        
+        printf("\t- warning! should be 1Fh\n\r");
+    printf("Vendor Information: '%.8s'\n\r", &inqReply[8]);
+    printf("Product Identification: '%.16s'\n\r", &inqReply[16]);
+    printf("Product Revision: '%.4s'\n\r", &inqReply[32]);        
 }
 
 int MSCFileSystem::initialise_msc()
@@ -68,7 +68,7 @@
     rc = Host_EnumDev();       /* Enumerate the device connected                                            */
     if (rc != OK)
     {
-        fprintf(stderr, "Could not enumerate device: %d\n", rc);
+        fprintf(stderr, "Could not enumerate device: %d\n\r", rc);
         return rc;
     }
         
@@ -77,10 +77,10 @@
     rc = MS_Init( &_blkSize, &_numBlks, inquiryResult );
     if (rc != OK)
     {
-        fprintf(stderr, "Could not initialize mass storage interface: %d\n", rc);
+        fprintf(stderr, "Could not initialize mass storage interface: %d\n\r", rc);
         return rc;
     }
-    printf("Successfully initialized mass storage interface; %d blocks of size %d\n", _numBlks, _blkSize);
+    printf("Successfully initialized mass storage interface; %d blocks of size %d\n\r", _numBlks, _blkSize);
     print_inquiry(inquiryResult);
     // FATFileSystem supports only 512-byte blocks
     return _blkSize == 512 ? OK : 1;