My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

SdVolume.h 9.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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 SdVolume_h
  21. #define SdVolume_h
  22. /**
  23. * \file
  24. * \brief SdVolume class
  25. */
  26. #include "SdFatConfig.h"
  27. #include "Sd2Card.h"
  28. #include "SdFatStructs.h"
  29. //==============================================================================
  30. // SdVolume class
  31. /**
  32. * \brief Cache for an SD data block
  33. */
  34. union cache_t {
  35. /** Used to access cached file data blocks. */
  36. uint8_t data[512];
  37. /** Used to access cached FAT16 entries. */
  38. uint16_t fat16[256];
  39. /** Used to access cached FAT32 entries. */
  40. uint32_t fat32[128];
  41. /** Used to access cached directory entries. */
  42. dir_t dir[16];
  43. /** Used to access a cached Master Boot Record. */
  44. mbr_t mbr;
  45. /** Used to access to a cached FAT boot sector. */
  46. fat_boot_t fbs;
  47. /** Used to access to a cached FAT32 boot sector. */
  48. fat32_boot_t fbs32;
  49. /** Used to access to a cached FAT32 FSINFO sector. */
  50. fat32_fsinfo_t fsinfo;
  51. };
  52. //------------------------------------------------------------------------------
  53. /**
  54. * \class SdVolume
  55. * \brief Access FAT16 and FAT32 volumes on SD and SDHC cards.
  56. */
  57. class SdVolume {
  58. public:
  59. /** Create an instance of SdVolume */
  60. SdVolume() : fatType_(0) {}
  61. /** Clear the cache and returns a pointer to the cache. Used by the WaveRP
  62. * recorder to do raw write to the SD card. Not for normal apps.
  63. * \return A pointer to the cache buffer or zero if an error occurs.
  64. */
  65. cache_t* cacheClear() {
  66. if (!cacheFlush()) return 0;
  67. cacheBlockNumber_ = 0XFFFFFFFF;
  68. return &cacheBuffer_;
  69. }
  70. /** Initialize a FAT volume. Try partition one first then try super
  71. * floppy format.
  72. *
  73. * \param[in] dev The Sd2Card where the volume is located.
  74. *
  75. * \return The value one, true, is returned for success and
  76. * the value zero, false, is returned for failure. Reasons for
  77. * failure include not finding a valid partition, not finding a valid
  78. * FAT file system or an I/O error.
  79. */
  80. bool init(Sd2Card* dev) { return init(dev, 1) ? true : init(dev, 0);}
  81. bool init(Sd2Card* dev, uint8_t part);
  82. // inline functions that return volume info
  83. /** \return The volume's cluster size in blocks. */
  84. uint8_t blocksPerCluster() const {return blocksPerCluster_;}
  85. /** \return The number of blocks in one FAT. */
  86. uint32_t blocksPerFat() const {return blocksPerFat_;}
  87. /** \return The total number of clusters in the volume. */
  88. uint32_t clusterCount() const {return clusterCount_;}
  89. /** \return The shift count required to multiply by blocksPerCluster. */
  90. uint8_t clusterSizeShift() const {return clusterSizeShift_;}
  91. /** \return The logical block number for the start of file data. */
  92. uint32_t dataStartBlock() const {return dataStartBlock_;}
  93. /** \return The number of FAT structures on the volume. */
  94. uint8_t fatCount() const {return fatCount_;}
  95. /** \return The logical block number for the start of the first FAT. */
  96. uint32_t fatStartBlock() const {return fatStartBlock_;}
  97. /** \return The FAT type of the volume. Values are 12, 16 or 32. */
  98. uint8_t fatType() const {return fatType_;}
  99. int32_t freeClusterCount();
  100. /** \return The number of entries in the root directory for FAT16 volumes. */
  101. uint32_t rootDirEntryCount() const {return rootDirEntryCount_;}
  102. /** \return The logical block number for the start of the root directory
  103. on FAT16 volumes or the first cluster number on FAT32 volumes. */
  104. uint32_t rootDirStart() const {return rootDirStart_;}
  105. /** Sd2Card object for this volume
  106. * \return pointer to Sd2Card object.
  107. */
  108. Sd2Card* sdCard() {return sdCard_;}
  109. /** Debug access to FAT table
  110. *
  111. * \param[in] n cluster number.
  112. * \param[out] v value of entry
  113. * \return true for success or false for failure
  114. */
  115. bool dbgFat(uint32_t n, uint32_t* v) {return fatGet(n, v);}
  116. //------------------------------------------------------------------------------
  117. private:
  118. // Allow SdBaseFile access to SdVolume private data.
  119. friend class SdBaseFile;
  120. // value for dirty argument in cacheRawBlock to indicate read from cache
  121. static bool const CACHE_FOR_READ = false;
  122. // value for dirty argument in cacheRawBlock to indicate write to cache
  123. static bool const CACHE_FOR_WRITE = true;
  124. #if USE_MULTIPLE_CARDS
  125. cache_t cacheBuffer_; // 512 byte cache for device blocks
  126. uint32_t cacheBlockNumber_; // Logical number of block in the cache
  127. Sd2Card* sdCard_; // Sd2Card object for cache
  128. bool cacheDirty_; // cacheFlush() will write block if true
  129. uint32_t cacheMirrorBlock_; // block number for mirror FAT
  130. #else // USE_MULTIPLE_CARDS
  131. static cache_t cacheBuffer_; // 512 byte cache for device blocks
  132. static uint32_t cacheBlockNumber_; // Logical number of block in the cache
  133. static Sd2Card* sdCard_; // Sd2Card object for cache
  134. static bool cacheDirty_; // cacheFlush() will write block if true
  135. static uint32_t cacheMirrorBlock_; // block number for mirror FAT
  136. #endif // USE_MULTIPLE_CARDS
  137. uint32_t allocSearchStart_; // start cluster for alloc search
  138. uint8_t blocksPerCluster_; // cluster size in blocks
  139. uint32_t blocksPerFat_; // FAT size in blocks
  140. uint32_t clusterCount_; // clusters in one FAT
  141. uint8_t clusterSizeShift_; // shift to convert cluster count to block count
  142. uint32_t dataStartBlock_; // first data block number
  143. uint8_t fatCount_; // number of FATs on volume
  144. uint32_t fatStartBlock_; // start block for first FAT
  145. uint8_t fatType_; // volume type (12, 16, OR 32)
  146. uint16_t rootDirEntryCount_; // number of entries in FAT16 root dir
  147. uint32_t rootDirStart_; // root start block for FAT16, cluster for FAT32
  148. //----------------------------------------------------------------------------
  149. bool allocContiguous(uint32_t count, uint32_t* curCluster);
  150. uint8_t blockOfCluster(uint32_t position) const {
  151. return (position >> 9) & (blocksPerCluster_ - 1);}
  152. uint32_t clusterStartBlock(uint32_t cluster) const {
  153. return dataStartBlock_ + ((cluster - 2) << clusterSizeShift_);}
  154. uint32_t blockNumber(uint32_t cluster, uint32_t position) const {
  155. return clusterStartBlock(cluster) + blockOfCluster(position);}
  156. cache_t *cache() {return &cacheBuffer_;}
  157. uint32_t cacheBlockNumber() {return cacheBlockNumber_;}
  158. #if USE_MULTIPLE_CARDS
  159. bool cacheFlush();
  160. bool cacheRawBlock(uint32_t blockNumber, bool dirty);
  161. #else // USE_MULTIPLE_CARDS
  162. static bool cacheFlush();
  163. static bool cacheRawBlock(uint32_t blockNumber, bool dirty);
  164. #endif // USE_MULTIPLE_CARDS
  165. // used by SdBaseFile write to assign cache to SD location
  166. void cacheSetBlockNumber(uint32_t blockNumber, bool dirty) {
  167. cacheDirty_ = dirty;
  168. cacheBlockNumber_ = blockNumber;
  169. }
  170. void cacheSetDirty() {cacheDirty_ |= CACHE_FOR_WRITE;}
  171. bool chainSize(uint32_t beginCluster, uint32_t* size);
  172. bool fatGet(uint32_t cluster, uint32_t* value);
  173. bool fatPut(uint32_t cluster, uint32_t value);
  174. bool fatPutEOC(uint32_t cluster) {
  175. return fatPut(cluster, 0x0FFFFFFF);
  176. }
  177. bool freeChain(uint32_t cluster);
  178. bool isEOC(uint32_t cluster) const {
  179. if (FAT12_SUPPORT && fatType_ == 12) return cluster >= FAT12EOC_MIN;
  180. if (fatType_ == 16) return cluster >= FAT16EOC_MIN;
  181. return cluster >= FAT32EOC_MIN;
  182. }
  183. bool readBlock(uint32_t block, uint8_t* dst) {
  184. return sdCard_->readBlock(block, dst);}
  185. bool writeBlock(uint32_t block, const uint8_t* dst) {
  186. return sdCard_->writeBlock(block, dst);
  187. }
  188. //------------------------------------------------------------------------------
  189. // Deprecated functions - suppress cpplint warnings with NOLINT comment
  190. #if ALLOW_DEPRECATED_FUNCTIONS && !defined(DOXYGEN)
  191. public:
  192. /** \deprecated Use: bool SdVolume::init(Sd2Card* dev);
  193. * \param[in] dev The SD card where the volume is located.
  194. * \return true for success or false for failure.
  195. */
  196. bool init(Sd2Card& dev) {return init(&dev);} // NOLINT
  197. /** \deprecated Use: bool SdVolume::init(Sd2Card* dev, uint8_t vol);
  198. * \param[in] dev The SD card where the volume is located.
  199. * \param[in] part The partition to be used.
  200. * \return true for success or false for failure.
  201. */
  202. bool init(Sd2Card& dev, uint8_t part) { // NOLINT
  203. return init(&dev, part);
  204. }
  205. #endif // ALLOW_DEPRECATED_FUNCTIONS
  206. };
  207. #endif // SdVolume