]> git.piffa.net Git - arduino/blob - books/pdummies/Libraries/SD/utility/SdFat.h
first commit
[arduino] / books / pdummies / Libraries / SD / utility / SdFat.h
1 /* Arduino SdFat Library
2  * Copyright (C) 2009 by William Greiman
3  *
4  * This file is part of the Arduino SdFat Library
5  *
6  * This Library is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This Library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with the Arduino SdFat Library.  If not, see
18  * <http://www.gnu.org/licenses/>.
19  */
20 #ifndef SdFat_h
21 #define SdFat_h
22 /**
23  * \file
24  * SdFile and SdVolume classes
25  */
26 #include <avr/pgmspace.h>
27 #include "Sd2Card.h"
28 #include "FatStructs.h"
29 #include "Print.h"
30 //------------------------------------------------------------------------------
31 /**
32  * Allow use of deprecated functions if non-zero
33  */
34 #define ALLOW_DEPRECATED_FUNCTIONS 1
35 //------------------------------------------------------------------------------
36 // forward declaration since SdVolume is used in SdFile
37 class SdVolume;
38 //==============================================================================
39 // SdFile class
40
41 // flags for ls()
42 /** ls() flag to print modify date */
43 uint8_t const LS_DATE = 1;
44 /** ls() flag to print file size */
45 uint8_t const LS_SIZE = 2;
46 /** ls() flag for recursive list of subdirectories */
47 uint8_t const LS_R = 4;
48
49 // use the gnu style oflag in open()
50 /** open() oflag for reading */
51 uint8_t const O_READ = 0X01;
52 /** open() oflag - same as O_READ */
53 uint8_t const O_RDONLY = O_READ;
54 /** open() oflag for write */
55 uint8_t const O_WRITE = 0X02;
56 /** open() oflag - same as O_WRITE */
57 uint8_t const O_WRONLY = O_WRITE;
58 /** open() oflag for reading and writing */
59 uint8_t const O_RDWR = (O_READ | O_WRITE);
60 /** open() oflag mask for access modes */
61 uint8_t const O_ACCMODE = (O_READ | O_WRITE);
62 /** The file offset shall be set to the end of the file prior to each write. */
63 uint8_t const O_APPEND = 0X04;
64 /** synchronous writes - call sync() after each write */
65 uint8_t const O_SYNC = 0X08;
66 /** create the file if nonexistent */
67 uint8_t const O_CREAT = 0X10;
68 /** If O_CREAT and O_EXCL are set, open() shall fail if the file exists */
69 uint8_t const O_EXCL = 0X20;
70 /** truncate the file to zero length */
71 uint8_t const O_TRUNC = 0X40;
72
73 // flags for timestamp
74 /** set the file's last access date */
75 uint8_t const T_ACCESS = 1;
76 /** set the file's creation date and time */
77 uint8_t const T_CREATE = 2;
78 /** Set the file's write date and time */
79 uint8_t const T_WRITE = 4;
80 // values for type_
81 /** This SdFile has not been opened. */
82 uint8_t const FAT_FILE_TYPE_CLOSED = 0;
83 /** SdFile for a file */
84 uint8_t const FAT_FILE_TYPE_NORMAL = 1;
85 /** SdFile for a FAT16 root directory */
86 uint8_t const FAT_FILE_TYPE_ROOT16 = 2;
87 /** SdFile for a FAT32 root directory */
88 uint8_t const FAT_FILE_TYPE_ROOT32 = 3;
89 /** SdFile for a subdirectory */
90 uint8_t const FAT_FILE_TYPE_SUBDIR = 4;
91 /** Test value for directory type */
92 uint8_t const FAT_FILE_TYPE_MIN_DIR = FAT_FILE_TYPE_ROOT16;
93
94 /** date field for FAT directory entry */
95 static inline uint16_t FAT_DATE(uint16_t year, uint8_t month, uint8_t day) {
96   return (year - 1980) << 9 | month << 5 | day;
97 }
98 /** year part of FAT directory date field */
99 static inline uint16_t FAT_YEAR(uint16_t fatDate) {
100   return 1980 + (fatDate >> 9);
101 }
102 /** month part of FAT directory date field */
103 static inline uint8_t FAT_MONTH(uint16_t fatDate) {
104   return (fatDate >> 5) & 0XF;
105 }
106 /** day part of FAT directory date field */
107 static inline uint8_t FAT_DAY(uint16_t fatDate) {
108   return fatDate & 0X1F;
109 }
110 /** time field for FAT directory entry */
111 static inline uint16_t FAT_TIME(uint8_t hour, uint8_t minute, uint8_t second) {
112   return hour << 11 | minute << 5 | second >> 1;
113 }
114 /** hour part of FAT directory time field */
115 static inline uint8_t FAT_HOUR(uint16_t fatTime) {
116   return fatTime >> 11;
117 }
118 /** minute part of FAT directory time field */
119 static inline uint8_t FAT_MINUTE(uint16_t fatTime) {
120   return(fatTime >> 5) & 0X3F;
121 }
122 /** second part of FAT directory time field */
123 static inline uint8_t FAT_SECOND(uint16_t fatTime) {
124   return 2*(fatTime & 0X1F);
125 }
126 /** Default date for file timestamps is 1 Jan 2000 */
127 uint16_t const FAT_DEFAULT_DATE = ((2000 - 1980) << 9) | (1 << 5) | 1;
128 /** Default time for file timestamp is 1 am */
129 uint16_t const FAT_DEFAULT_TIME = (1 << 11);
130 //------------------------------------------------------------------------------
131 /**
132  * \class SdFile
133  * \brief Access FAT16 and FAT32 files on SD and SDHC cards.
134  */
135 class SdFile : public Print {
136  public:
137   /** Create an instance of SdFile. */
138   SdFile(void) : type_(FAT_FILE_TYPE_CLOSED) {}
139   /**
140    * writeError is set to true if an error occurs during a write().
141    * Set writeError to false before calling print() and/or write() and check
142    * for true after calls to print() and/or write().
143    */
144   bool writeError;
145   /**
146    * Cancel unbuffered reads for this file.
147    * See setUnbufferedRead()
148    */
149   void clearUnbufferedRead(void) {
150     flags_ &= ~F_FILE_UNBUFFERED_READ;
151   }
152   uint8_t close(void);
153   uint8_t contiguousRange(uint32_t* bgnBlock, uint32_t* endBlock);
154   uint8_t createContiguous(SdFile* dirFile,
155           const char* fileName, uint32_t size);
156   /** \return The current cluster number for a file or directory. */
157   uint32_t curCluster(void) const {return curCluster_;}
158   /** \return The current position for a file or directory. */
159   uint32_t curPosition(void) const {return curPosition_;}
160   /**
161    * Set the date/time callback function
162    *
163    * \param[in] dateTime The user's call back function.  The callback
164    * function is of the form:
165    *
166    * \code
167    * void dateTime(uint16_t* date, uint16_t* time) {
168    *   uint16_t year;
169    *   uint8_t month, day, hour, minute, second;
170    *
171    *   // User gets date and time from GPS or real-time clock here
172    *
173    *   // return date using FAT_DATE macro to format fields
174    *   *date = FAT_DATE(year, month, day);
175    *
176    *   // return time using FAT_TIME macro to format fields
177    *   *time = FAT_TIME(hour, minute, second);
178    * }
179    * \endcode
180    *
181    * Sets the function that is called when a file is created or when
182    * a file's directory entry is modified by sync(). All timestamps,
183    * access, creation, and modify, are set when a file is created.
184    * sync() maintains the last access date and last modify date/time.
185    *
186    * See the timestamp() function.
187    */
188   static void dateTimeCallback(
189     void (*dateTime)(uint16_t* date, uint16_t* time)) {
190     dateTime_ = dateTime;
191   }
192   /**
193    * Cancel the date/time callback function.
194    */
195   static void dateTimeCallbackCancel(void) {
196     // use explicit zero since NULL is not defined for Sanguino
197     dateTime_ = 0;
198   }
199   /** \return Address of the block that contains this file's directory. */
200   uint32_t dirBlock(void) const {return dirBlock_;}
201   uint8_t dirEntry(dir_t* dir);
202   /** \return Index of this file's directory in the block dirBlock. */
203   uint8_t dirIndex(void) const {return dirIndex_;}
204   static void dirName(const dir_t& dir, char* name);
205   /** \return The total number of bytes in a file or directory. */
206   uint32_t fileSize(void) const {return fileSize_;}
207   /** \return The first cluster number for a file or directory. */
208   uint32_t firstCluster(void) const {return firstCluster_;}
209   /** \return True if this is a SdFile for a directory else false. */
210   uint8_t isDir(void) const {return type_ >= FAT_FILE_TYPE_MIN_DIR;}
211   /** \return True if this is a SdFile for a file else false. */
212   uint8_t isFile(void) const {return type_ == FAT_FILE_TYPE_NORMAL;}
213   /** \return True if this is a SdFile for an open file/directory else false. */
214   uint8_t isOpen(void) const {return type_ != FAT_FILE_TYPE_CLOSED;}
215   /** \return True if this is a SdFile for a subdirectory else false. */
216   uint8_t isSubDir(void) const {return type_ == FAT_FILE_TYPE_SUBDIR;}
217   /** \return True if this is a SdFile for the root directory. */
218   uint8_t isRoot(void) const {
219     return type_ == FAT_FILE_TYPE_ROOT16 || type_ == FAT_FILE_TYPE_ROOT32;
220   }
221   void ls(uint8_t flags = 0, uint8_t indent = 0);
222   uint8_t makeDir(SdFile* dir, const char* dirName);
223   uint8_t open(SdFile* dirFile, uint16_t index, uint8_t oflag);
224   uint8_t open(SdFile* dirFile, const char* fileName, uint8_t oflag);
225
226   uint8_t openRoot(SdVolume* vol);
227   static void printDirName(const dir_t& dir, uint8_t width);
228   static void printFatDate(uint16_t fatDate);
229   static void printFatTime(uint16_t fatTime);
230   static void printTwoDigits(uint8_t v);
231   /**
232    * Read the next byte from a file.
233    *
234    * \return For success read returns the next byte in the file as an int.
235    * If an error occurs or end of file is reached -1 is returned.
236    */
237   int16_t read(void) {
238     uint8_t b;
239     return read(&b, 1) == 1 ? b : -1;
240   }
241   int16_t read(void* buf, uint16_t nbyte);
242   int8_t readDir(dir_t* dir);
243   static uint8_t remove(SdFile* dirFile, const char* fileName);
244   uint8_t remove(void);
245   /** Set the file's current position to zero. */
246   void rewind(void) {
247     curPosition_ = curCluster_ = 0;
248   }
249   uint8_t rmDir(void);
250   uint8_t rmRfStar(void);
251   /** Set the files position to current position + \a pos. See seekSet(). */
252   uint8_t seekCur(uint32_t pos) {
253     return seekSet(curPosition_ + pos);
254   }
255   /**
256    *  Set the files current position to end of file.  Useful to position
257    *  a file for append. See seekSet().
258    */
259   uint8_t seekEnd(void) {return seekSet(fileSize_);}
260   uint8_t seekSet(uint32_t pos);
261   /**
262    * Use unbuffered reads to access this file.  Used with Wave
263    * Shield ISR.  Used with Sd2Card::partialBlockRead() in WaveRP.
264    *
265    * Not recommended for normal applications.
266    */
267   void setUnbufferedRead(void) {
268     if (isFile()) flags_ |= F_FILE_UNBUFFERED_READ;
269   }
270   uint8_t timestamp(uint8_t flag, uint16_t year, uint8_t month, uint8_t day,
271           uint8_t hour, uint8_t minute, uint8_t second);
272   uint8_t sync(void);
273   /** Type of this SdFile.  You should use isFile() or isDir() instead of type()
274    * if possible.
275    *
276    * \return The file or directory type.
277    */
278   uint8_t type(void) const {return type_;}
279   uint8_t truncate(uint32_t size);
280   /** \return Unbuffered read flag. */
281   uint8_t unbufferedRead(void) const {
282     return flags_ & F_FILE_UNBUFFERED_READ;
283   }
284   /** \return SdVolume that contains this file. */
285   SdVolume* volume(void) const {return vol_;}
286 #if ARDUINO >= 100
287   size_t write(uint8_t b);
288   size_t write(const void* buf, uint16_t nbyte);
289   size_t write(const char* str);
290 #else
291   void write(uint8_t b);
292   int16_t write(const void* buf, uint16_t nbyte);
293   void write(const char* str);
294 #endif
295   void write_P(PGM_P str);
296   void writeln_P(PGM_P str);
297 //------------------------------------------------------------------------------
298 #if ALLOW_DEPRECATED_FUNCTIONS
299 // Deprecated functions  - suppress cpplint warnings with NOLINT comment
300   /** \deprecated Use:
301    * uint8_t SdFile::contiguousRange(uint32_t* bgnBlock, uint32_t* endBlock);
302    */
303   uint8_t contiguousRange(uint32_t& bgnBlock, uint32_t& endBlock) {  // NOLINT
304     return contiguousRange(&bgnBlock, &endBlock);
305   }
306  /** \deprecated Use:
307    * uint8_t SdFile::createContiguous(SdFile* dirFile,
308    *   const char* fileName, uint32_t size)
309    */
310   uint8_t createContiguous(SdFile& dirFile,  // NOLINT
311     const char* fileName, uint32_t size) {
312     return createContiguous(&dirFile, fileName, size);
313   }
314
315   /**
316    * \deprecated Use:
317    * static void SdFile::dateTimeCallback(
318    *   void (*dateTime)(uint16_t* date, uint16_t* time));
319    */
320   static void dateTimeCallback(
321     void (*dateTime)(uint16_t& date, uint16_t& time)) {  // NOLINT
322     oldDateTime_ = dateTime;
323     dateTime_ = dateTime ? oldToNew : 0;
324   }
325   /** \deprecated Use: uint8_t SdFile::dirEntry(dir_t* dir); */
326   uint8_t dirEntry(dir_t& dir) {return dirEntry(&dir);}  // NOLINT
327   /** \deprecated Use:
328    * uint8_t SdFile::makeDir(SdFile* dir, const char* dirName);
329    */
330   uint8_t makeDir(SdFile& dir, const char* dirName) {  // NOLINT
331     return makeDir(&dir, dirName);
332   }
333   /** \deprecated Use:
334    * uint8_t SdFile::open(SdFile* dirFile, const char* fileName, uint8_t oflag);
335    */
336   uint8_t open(SdFile& dirFile, // NOLINT
337     const char* fileName, uint8_t oflag) {
338     return open(&dirFile, fileName, oflag);
339   }
340   /** \deprecated  Do not use in new apps */
341   uint8_t open(SdFile& dirFile, const char* fileName) {  // NOLINT
342     return open(dirFile, fileName, O_RDWR);
343   }
344   /** \deprecated Use:
345    * uint8_t SdFile::open(SdFile* dirFile, uint16_t index, uint8_t oflag);
346    */
347   uint8_t open(SdFile& dirFile, uint16_t index, uint8_t oflag) {  // NOLINT
348     return open(&dirFile, index, oflag);
349   }
350   /** \deprecated Use: uint8_t SdFile::openRoot(SdVolume* vol); */
351   uint8_t openRoot(SdVolume& vol) {return openRoot(&vol);}  // NOLINT
352
353   /** \deprecated Use: int8_t SdFile::readDir(dir_t* dir); */
354   int8_t readDir(dir_t& dir) {return readDir(&dir);}  // NOLINT
355   /** \deprecated Use:
356    * static uint8_t SdFile::remove(SdFile* dirFile, const char* fileName);
357    */
358   static uint8_t remove(SdFile& dirFile, const char* fileName) {  // NOLINT
359     return remove(&dirFile, fileName);
360   }
361 //------------------------------------------------------------------------------
362 // rest are private
363  private:
364   static void (*oldDateTime_)(uint16_t& date, uint16_t& time);  // NOLINT
365   static void oldToNew(uint16_t* date, uint16_t* time) {
366     uint16_t d;
367     uint16_t t;
368     oldDateTime_(d, t);
369     *date = d;
370     *time = t;
371   }
372 #endif  // ALLOW_DEPRECATED_FUNCTIONS
373  private:
374   // bits defined in flags_
375   // should be 0XF
376   static uint8_t const F_OFLAG = (O_ACCMODE | O_APPEND | O_SYNC);
377   // available bits
378   static uint8_t const F_UNUSED = 0X30;
379   // use unbuffered SD read
380   static uint8_t const F_FILE_UNBUFFERED_READ = 0X40;
381   // sync of directory entry required
382   static uint8_t const F_FILE_DIR_DIRTY = 0X80;
383
384 // make sure F_OFLAG is ok
385 #if ((F_UNUSED | F_FILE_UNBUFFERED_READ | F_FILE_DIR_DIRTY) & F_OFLAG)
386 #error flags_ bits conflict
387 #endif  // flags_ bits
388
389   // private data
390   uint8_t   flags_;         // See above for definition of flags_ bits
391   uint8_t   type_;          // type of file see above for values
392   uint32_t  curCluster_;    // cluster for current file position
393   uint32_t  curPosition_;   // current file position in bytes from beginning
394   uint32_t  dirBlock_;      // SD block that contains directory entry for file
395   uint8_t   dirIndex_;      // index of entry in dirBlock 0 <= dirIndex_ <= 0XF
396   uint32_t  fileSize_;      // file size in bytes
397   uint32_t  firstCluster_;  // first cluster of file
398   SdVolume* vol_;           // volume where file is located
399
400   // private functions
401   uint8_t addCluster(void);
402   uint8_t addDirCluster(void);
403   dir_t* cacheDirEntry(uint8_t action);
404   static void (*dateTime_)(uint16_t* date, uint16_t* time);
405   static uint8_t make83Name(const char* str, uint8_t* name);
406   uint8_t openCachedEntry(uint8_t cacheIndex, uint8_t oflags);
407   dir_t* readDirCache(void);
408 };
409 //==============================================================================
410 // SdVolume class
411 /**
412  * \brief Cache for an SD data block
413  */
414 union cache_t {
415            /** Used to access cached file data blocks. */
416   uint8_t  data[512];
417            /** Used to access cached FAT16 entries. */
418   uint16_t fat16[256];
419            /** Used to access cached FAT32 entries. */
420   uint32_t fat32[128];
421            /** Used to access cached directory entries. */
422   dir_t    dir[16];
423            /** Used to access a cached MasterBoot Record. */
424   mbr_t    mbr;
425            /** Used to access to a cached FAT boot sector. */
426   fbs_t    fbs;
427 };
428 //------------------------------------------------------------------------------
429 /**
430  * \class SdVolume
431  * \brief Access FAT16 and FAT32 volumes on SD and SDHC cards.
432  */
433 class SdVolume {
434  public:
435   /** Create an instance of SdVolume */
436   SdVolume(void) :allocSearchStart_(2), fatType_(0) {}
437   /** Clear the cache and returns a pointer to the cache.  Used by the WaveRP
438    *  recorder to do raw write to the SD card.  Not for normal apps.
439    */
440   static uint8_t* cacheClear(void) {
441     cacheFlush();
442     cacheBlockNumber_ = 0XFFFFFFFF;
443     return cacheBuffer_.data;
444   }
445   /**
446    * Initialize a FAT volume.  Try partition one first then try super
447    * floppy format.
448    *
449    * \param[in] dev The Sd2Card where the volume is located.
450    *
451    * \return The value one, true, is returned for success and
452    * the value zero, false, is returned for failure.  Reasons for
453    * failure include not finding a valid partition, not finding a valid
454    * FAT file system or an I/O error.
455    */
456   uint8_t init(Sd2Card* dev) { return init(dev, 1) ? true : init(dev, 0);}
457   uint8_t init(Sd2Card* dev, uint8_t part);
458
459   // inline functions that return volume info
460   /** \return The volume's cluster size in blocks. */
461   uint8_t blocksPerCluster(void) const {return blocksPerCluster_;}
462   /** \return The number of blocks in one FAT. */
463   uint32_t blocksPerFat(void)  const {return blocksPerFat_;}
464   /** \return The total number of clusters in the volume. */
465   uint32_t clusterCount(void) const {return clusterCount_;}
466   /** \return The shift count required to multiply by blocksPerCluster. */
467   uint8_t clusterSizeShift(void) const {return clusterSizeShift_;}
468   /** \return The logical block number for the start of file data. */
469   uint32_t dataStartBlock(void) const {return dataStartBlock_;}
470   /** \return The number of FAT structures on the volume. */
471   uint8_t fatCount(void) const {return fatCount_;}
472   /** \return The logical block number for the start of the first FAT. */
473   uint32_t fatStartBlock(void) const {return fatStartBlock_;}
474   /** \return The FAT type of the volume. Values are 12, 16 or 32. */
475   uint8_t fatType(void) const {return fatType_;}
476   /** \return The number of entries in the root directory for FAT16 volumes. */
477   uint32_t rootDirEntryCount(void) const {return rootDirEntryCount_;}
478   /** \return The logical block number for the start of the root directory
479        on FAT16 volumes or the first cluster number on FAT32 volumes. */
480   uint32_t rootDirStart(void) const {return rootDirStart_;}
481   /** return a pointer to the Sd2Card object for this volume */
482   static Sd2Card* sdCard(void) {return sdCard_;}
483 //------------------------------------------------------------------------------
484 #if ALLOW_DEPRECATED_FUNCTIONS
485   // Deprecated functions  - suppress cpplint warnings with NOLINT comment
486   /** \deprecated Use: uint8_t SdVolume::init(Sd2Card* dev); */
487   uint8_t init(Sd2Card& dev) {return init(&dev);}  // NOLINT
488
489   /** \deprecated Use: uint8_t SdVolume::init(Sd2Card* dev, uint8_t vol); */
490   uint8_t init(Sd2Card& dev, uint8_t part) {  // NOLINT
491     return init(&dev, part);
492   }
493 #endif  // ALLOW_DEPRECATED_FUNCTIONS
494 //------------------------------------------------------------------------------
495   private:
496   // Allow SdFile access to SdVolume private data.
497   friend class SdFile;
498
499   // value for action argument in cacheRawBlock to indicate read from cache
500   static uint8_t const CACHE_FOR_READ = 0;
501   // value for action argument in cacheRawBlock to indicate cache dirty
502   static uint8_t const CACHE_FOR_WRITE = 1;
503
504   static cache_t cacheBuffer_;        // 512 byte cache for device blocks
505   static uint32_t cacheBlockNumber_;  // Logical number of block in the cache
506   static Sd2Card* sdCard_;            // Sd2Card object for cache
507   static uint8_t cacheDirty_;         // cacheFlush() will write block if true
508   static uint32_t cacheMirrorBlock_;  // block number for mirror FAT
509 //
510   uint32_t allocSearchStart_;   // start cluster for alloc search
511   uint8_t blocksPerCluster_;    // cluster size in blocks
512   uint32_t blocksPerFat_;       // FAT size in blocks
513   uint32_t clusterCount_;       // clusters in one FAT
514   uint8_t clusterSizeShift_;    // shift to convert cluster count to block count
515   uint32_t dataStartBlock_;     // first data block number
516   uint8_t fatCount_;            // number of FATs on volume
517   uint32_t fatStartBlock_;      // start block for first FAT
518   uint8_t fatType_;             // volume type (12, 16, OR 32)
519   uint16_t rootDirEntryCount_;  // number of entries in FAT16 root dir
520   uint32_t rootDirStart_;       // root start block for FAT16, cluster for FAT32
521   //----------------------------------------------------------------------------
522   uint8_t allocContiguous(uint32_t count, uint32_t* curCluster);
523   uint8_t blockOfCluster(uint32_t position) const {
524           return (position >> 9) & (blocksPerCluster_ - 1);}
525   uint32_t clusterStartBlock(uint32_t cluster) const {
526            return dataStartBlock_ + ((cluster - 2) << clusterSizeShift_);}
527   uint32_t blockNumber(uint32_t cluster, uint32_t position) const {
528            return clusterStartBlock(cluster) + blockOfCluster(position);}
529   static uint8_t cacheFlush(void);
530   static uint8_t cacheRawBlock(uint32_t blockNumber, uint8_t action);
531   static void cacheSetDirty(void) {cacheDirty_ |= CACHE_FOR_WRITE;}
532   static uint8_t cacheZeroBlock(uint32_t blockNumber);
533   uint8_t chainSize(uint32_t beginCluster, uint32_t* size) const;
534   uint8_t fatGet(uint32_t cluster, uint32_t* value) const;
535   uint8_t fatPut(uint32_t cluster, uint32_t value);
536   uint8_t fatPutEOC(uint32_t cluster) {
537     return fatPut(cluster, 0x0FFFFFFF);
538   }
539   uint8_t freeChain(uint32_t cluster);
540   uint8_t isEOC(uint32_t cluster) const {
541     return  cluster >= (fatType_ == 16 ? FAT16EOC_MIN : FAT32EOC_MIN);
542   }
543   uint8_t readBlock(uint32_t block, uint8_t* dst) {
544     return sdCard_->readBlock(block, dst);}
545   uint8_t readData(uint32_t block, uint16_t offset,
546     uint16_t count, uint8_t* dst) {
547       return sdCard_->readData(block, offset, count, dst);
548   }
549   uint8_t writeBlock(uint32_t block, const uint8_t* dst) {
550     return sdCard_->writeBlock(block, dst);
551   }
552 };
553 #endif  // SdFat_h