Skip to content

Commit

Permalink
Add CRC read error code
Browse files Browse the repository at this point in the history
  • Loading branch information
greiman committed Jul 4, 2017
1 parent 6ab0533 commit 8b8776a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=SdFat
version=1.0.2
version=1.0.3
author=Bill Greiman <[email protected]>
maintainer=Bill Greiman <[email protected]>
sentence=FAT16/FAT32 file system for SD cards.
Expand Down
1 change: 1 addition & 0 deletions src/SdCard/SdInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ typedef enum {

// Read/write errors
SD_CARD_ERROR_READ = 0X50,
SD_CARD_ERROR_READ_CRC,
SD_CARD_ERROR_READ_FIFO,
SD_CARD_ERROR_READ_REG,
SD_CARD_ERROR_READ_START,
Expand Down
2 changes: 1 addition & 1 deletion src/SdFat.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "SdCard/SdioCard.h"
//------------------------------------------------------------------------------
/** SdFat version */
#define SD_FAT_VERSION "1.0.2"
#define SD_FAT_VERSION "1.0.3"
//==============================================================================
/**
* \class SdBaseFile
Expand Down

0 comments on commit 8b8776a

Please sign in to comment.