A re-written SDFileSystem library with improved compatibility, CRC support, and card removal/replacement support.

Dependencies:   FATFileSystem

Dependents:   xadow_m0_SD_Hello roam_v1 roam_v2 Polytech_tours ... more

Revision:
4:49b29888eca7
Parent:
3:7cf3d1835ef5
Child:
5:6befff2300d0
--- a/SDFileSystem.cpp	Wed Jul 30 17:45:02 2014 +0000
+++ b/SDFileSystem.cpp	Wed Jul 30 17:51:33 2014 +0000
@@ -411,7 +411,7 @@
 
         //Prepare the command packet
         char cmdPacket[6];
-        cmdPacket[0] = 0x40 | cmd;
+        cmdPacket[0] = cmd;
         cmdPacket[1] = arg >> 24;
         cmdPacket[2] = arg >> 16;
         cmdPacket[3] = arg >> 8;