You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

462 satır
12KB

  1. 12 Feb 2016
  2. Mods for Particle.io boards.
  3. Features for shared SPI with multiple block write.
  4. 23 Jan 2016
  5. New Examples.
  6. New SPI structure for ports to boards like the Particle Photon/Electron.
  7. Several bug fixes.
  8. 19 Jul 2015
  9. Converted to 1.5x library format.
  10. Use standard SPI library is no custom SPI library is available for a board.
  11. Option to maintain freeClusterCount.
  12. 16 Mar 2015
  13. Minimal support for Teensy-LC.
  14. 23 Feb 2015
  15. New 1284P software SPI macros.
  16. 01 Feb 2015
  17. Code cleanup and re-factor.
  18. 04 Dec 2014
  19. Added support for Long File Names.
  20. 14 Nov 2014
  21. Replaced the core SdFat code with FatLib, a generic FAT12/FAT16/FAT32
  22. library. This may result in bugs and backward compatibility problems.
  23. Added SdFatSoftSpi, software SPI template class.
  24. Allow simultaneous use of hardware and software SPI with multiple cards.
  25. See the ThreeCard example.
  26. Added minimal Long File Name support. See the LongFileName example.
  27. 25 Oct 2014
  28. Added File class for compatibility with the Arduino SD.h library
  29. Added StreamParseInt example.
  30. 23 Oct 2014
  31. Added Read SD OCR register.
  32. SdInfo example now prints OCR register.
  33. 05 Sep 2014
  34. Faster SdBaseFile::printField();
  35. Added SdBaseFile::printField(float value, char term, uint8_t prec);
  36. 24 Aug 2014
  37. Added support for Software SPI on Due and Teensy 3.1
  38. Added support for SPI transactions.
  39. 05 Aug 2014
  40. New examples.
  41. Teensy 3.x SPI mods.
  42. Test version of StdioStream.
  43. 25 Dec 2013
  44. Improved cluster allocation speed.
  45. Fix for Teensy 3.0
  46. 21 Jun 2013
  47. Improved speed of single block write.
  48. Added StressTest example.
  49. 04 May 2013
  50. Fix FreeRam() for 1.05/1.53 malloc.
  51. Reorganised SPI code.
  52. SPI speed set by SCK divisor.
  53. Faster directory search in file open.
  54. Removed deprecated functions.
  55. 13 Mar 2013
  56. Fix for 1.0.4 malloc
  57. New Software SPI
  58. 07 Feb 2013
  59. Patch for 1.5.2 version of malloc.
  60. Updated SPI driver for Teensy 3.0
  61. Added fast printField() functions.
  62. 19 Dec 2012
  63. Fixed SoftSPI bug
  64. 01 Dec 2012
  65. Added support for the Arduino Due.
  66. The default for ALLOW_DEPRECATED_FUNCTIONS has been changed to
  67. false. If you get compile errors for these functions, either
  68. change to the preferred replacement function indicated in the
  69. error message or set ALLOW_DEPRECATED_FUNCTIONS nonzero.
  70. A key change was to remove sd.init(spiRateID, chipSelect) in favor of
  71. sd.begin(chipSelect, spiRateID). The difference between these two is
  72. the order of the arguments which has caused serious confusion at times.
  73. A massive number of internal changes have been made. There are over 2600
  74. lines in the diff file of this version and the 20120719 version.
  75. 20 Oct 2012
  76. Changes to support ARM processors. Tested with a Teensy 3.0.
  77. Changes for higher performance with large reads and writes.
  78. 25 Aug 2012
  79. Added uint32_t available();
  80. Support for new industrial SD cards
  81. Better support for MiniSerial and MiniSerial example
  82. Changes to support newer versions of avr-gcc
  83. Changed RawWrite example to use micros() for delay between blocks.
  84. Changed SdFatSize example to use MiniSerial
  85. 19 Jul 2012
  86. Require Arduino 1.0 or greater. Change file type for all examples to *.ino.
  87. Modify the SdFormatter example to format SDXC cards as FAT32. This is not the
  88. SDXC standard which is exFAT.
  89. 30 May 2012
  90. Added << operator for Arduino flash string macro F().
  91. New RawWrite example for fast write of contiguous files.
  92. New faster software SPI
  93. Software SPI for Leonardo boards
  94. Don't use __cxa_pure_virtual by default for Arduino 1.0 or greater.
  95. 26 Mar 2012
  96. Removed definition for SS_PIN, MISO_PIN, MOSI_PIN, and SCK_PIN. Used the
  97. Arduino 1.0 symbols SS, MISO, MOSI, and SCK.
  98. Added Arduino style SdFat::begin(chipSelect, spiSpeed);
  99. Added options for SD crc checking. Enabling crc checking increases reliability
  100. at the cost of speed. Edit SdFatConfig.h to select CRC options.
  101. Override Print::getWriteError() and Print::clearWriteError() to use
  102. SdBaseFile functions.
  103. Many internal changes.
  104. 08 Jan 2012
  105. Changes to allow use of the SerialPort library.
  106. Error messages and output from programs are now sent to a stdOut Print
  107. stream.
  108. The default stdOut is a small non-interrupt driven class that outputs messages
  109. to serial port zero. This allows an alternate Serial library like SerialPort
  110. to be used with SdFat.
  111. You can redirect stdOut with SdFat::setStdOut(Print* stream) and
  112. get the current stdOut stream with SdFat::stdOut().
  113. If USE_SERIAL_FOR_STD_OUT in SdFatConfig.h is nonzero, the Arduino Serial
  114. object will be used as the default for stdOut.
  115. 05 Dec 2011
  116. Changes for Arduino 1.0
  117. 17 Sep 2011
  118. Changes for Arduino 1.0 beta 4
  119. Improved SPI handling
  120. 02 Sep 2011
  121. --------------------------------------------------------------------------------
  122. Warning:
  123. Several changes are not backward compatible with the previous
  124. version of SdFat.
  125. The function cwd() was renamed vwd() to allow multiple SD cards.
  126. The type SdBaseFile was added to the class hierarchy to avoid conflicts with
  127. other Arduino libraries that are derived from the Print class. Directory
  128. files should be declared type SdBaseFile.
  129. --------------------------------------------------------------------------------
  130. Added support for multiple SD cards.
  131. Change the name of SdFat::cwd() to SdFat::vwd() since the volume
  132. working directory is not the current working directory with
  133. multiple SD cards.
  134. Added the static function SdBaseFile::cwd() to return a pointer
  135. to the current working directory.
  136. Added the TwoCards.pde example to demonstrate use of multiple SD cards.
  137. Added readCSV.pde example to demonstrate iostream extractors.
  138. Added bool SdBaseFile::timestamp(SdBaseFile* file) to copy one
  139. file's timestamps to another file.
  140. Improved messages in the QuickStart.pde example.
  141. Added maximum latency test to the bench.pde example.
  142. Rearanged class hierarchy to fix conflicts with Flash.h and other Adruino
  143. libraries. Print is no longer a private parent of file stream classes.
  144. Added high speed multiple block read functions to Sd2Card.
  145. Changed include files in SdFatUtil.h
  146. Removed option to write protect block zero of an SD card.
  147. Changes for Arduino 1.0.
  148. 02 Jul 2011
  149. This is a major update based on previous beta versions.
  150. Read all changes since 10 Oct 2001
  151. Simplified examples in extra/examplesV1
  152. 28 Jun 2011
  153. This is a release candidate to replace sdfatlib20101010.
  154. Initialize SPI bus before every access.
  155. Improved write multiple block functions for fast data logging.
  156. SdVolume::cacheClear() returns zero if it fails.
  157. Documentation changes.
  158. 04 Jun 2011
  159. Added SdFatTestSuite and fixed bugs found by test programs.
  160. Added functions:
  161. bool SdFat::truncate(const char* path, uint32_t length);
  162. int16_t SdFile::fgets(char* str, int16_t num, char* delim);
  163. 11 May 2011
  164. Added QuickStart sketch and QuickStart.txt file for fast hardware test.
  165. Added several new examples.
  166. Version of ls() that can write to any Print object.
  167. New functions including freeClusterCount(), openNext() rename().
  168. 14 Apr 2011
  169. Total rewrite to add iostreams and SdFat class with current working directory.
  170. Old API maintained for backward compatibility.
  171. 27 Nov 2010
  172. Added experimental support for FAT12. This can be enabled by setting
  173. FAT12_SUPPORT nonzero in SdFatConfig.h.
  174. Added an experimental sketch, SdFatFormatter.pde, to format SD cards as
  175. FAT16 and SDHC cards as FAT32. See SdFat/examples/SdFormatter.
  176. The return type of SdVolume::cacheClear was changed to cache_t*.
  177. Many internal changes to support FAT12 and formatting SD/SDHC cards.
  178. 10 Oct 2010
  179. Added Mega 2560.
  180. Fixed rmRfStar() bug.
  181. Fixed Sanguino NULL definition.
  182. 18 Aug 2010
  183. Optimized write() for append at end of file. Up to 50% faster sequential write.
  184. 13 Aug 2010
  185. Added the following function to allow the SD chip select pin to be set
  186. at runtime. Warning - if the hardware SS pin is not used as chip select,
  187. the hardware SS pin will be set to output mode by init(). An avr processor
  188. will not function as an SPI master unless SS is set to output mode.
  189. uint8_t Sd2Card::init(uint8_t sckRateID, uint8_t chipSelectPin);
  190. Added more SPI clock rate choices. The above init() function and
  191. uint8_t Sd2Card::init(uint8_t sckRateID) call the new function
  192. uint8_t Sd2Card::setSckRate(uint8_t sckRateID).
  193. setSckRate() sets the SPI clock rate to F_CPU/pow(2, 1 + sckRateID).
  194. On an 16 MHz cpu this ranges from 8 MHz for sckRateId = 0 to 125 kHz
  195. for sckRateID = 6. This function must be called after the init() call.
  196. Modified most examples to call card.init(SPI_HALF_SPEED) to avoid SPI bus
  197. errors with breadboards and jumpers. This sets the SPI speed to F_CPU/4.
  198. Defined SPI_FULL_SPEED so init(SPI_FULL_SPEED) sets the SPI speed to F_CPU/2.
  199. Added the following function to cancel date/time callback. This function
  200. must now be used instead of dateTimeCallback(NULL).
  201. static void SdFat::dateTimeCallbackCancel(void);
  202. The following member functions have been added for users who wish to avoid
  203. calls to functions with non-const references.
  204. uint8_t SdFile::contiguousRange(uint32_t* bgnBlock, uint32_t* endBlock);
  205. uint8_t SdFile::createContiguous(SdFile* dirFile,
  206. const char* fileName, uint32_t size);
  207. static void SdFile::dateTimeCallback(
  208. void (*dateTime)(uint16_t* date, uint16_t* time));
  209. uint8_t SdFile::dirEntry(dir_t* dir);
  210. uint8_t SdFile::makeDir(SdFile* dir, const char* dirName);
  211. uint8_t SdFile::open(SdFile* dirFile, const char* fileName, uint8_t oflag);
  212. uint8_t SdFile::open(SdFile* dirFile, const char* fileName);
  213. uint8_t SdFile::open(SdFile* dirFile, uint16_t index, uint8_t oflag);
  214. uint8_t SdFile::openRoot(SdVolume* vol);
  215. int8_t SdFile::readDir(dir_t* dir);
  216. static uint8_t remove(SdFile* dirFile, const char* fileName);
  217. uint8_t SdVolume::init(Sd2Card* dev);
  218. uint8_t SdVolume::init(Sd2Card* dev, uint8_t part);
  219. The following member functions have been marked as deprecated since they
  220. are now wrappers for the new functions. dateTimeCallback is the only wrapper
  221. with extra overhead. The other wrappers are squeezed out by the complier.
  222. These wrappers will be maintained in the future for backward compatibility.
  223. uint8_t SdFile::contiguousRange(uint32_t& bgnBlock, uint32_t& endBlock);
  224. uint8_t SdFile::createContiguous(SdFile& dirFile,
  225. const char* fileName, uint32_t size);
  226. static void SdFile::dateTimeCallback(
  227. void (*dateTime)(uint16_t& date, uint16_t& time));
  228. uint8_t SdFile::dirEntry(dir_t& dir);
  229. uint8_t SdFile::makeDir(SdFile& dir, const char* dirName);
  230. uint8_t SdFile::open(SdFile& dirFile, const char* fileName, uint8_t oflag);
  231. uint8_t SdFile::open(SdFile& dirFile, const char* fileName);
  232. uint8_t SdFile::open(SdFile& dirFile, uint16_t index, uint8_t oflag);
  233. uint8_t SdFile::openRoot(SdVolume& vol);
  234. int8_t SdFile::readDir(dir_t& dir);
  235. static uint8_t remove(SdFile& dirFile, const char* fileName);
  236. uint8_t SdVolume::init(Sd2Card& dev);
  237. uint8_t SdVolume::init(Sd2Card& dev, uint8_t part);
  238. The deprecated function can be disabled by editing SdFat.h and setting
  239. #define ALLOW_DEPRECATED_FUNCTIONS 0
  240. Fixed file modify time for file rewrite.
  241. Major internal cleanup/reformat based on Google cpplint.py code style.
  242. New Sd2Card::init() algorithm.
  243. New SdFatInfo sketch for modified SdReadData() and other internal changes.
  244. Modified examples to eliminate deprecated functions.
  245. 11 Jun 2010
  246. Added definitions for Teensy to ArduinoPins.h (Paul Stoffregen)
  247. Added troubleshooting.txt
  248. 23 Dec 2009
  249. Added Software SPI capability. See Sd2Card.h
  250. Defining MEGA_SOFT_SPI allows an unmodified Adafruit GPS Shield to be used
  251. on Mega Arduinos. Software SPI works well with GPS Shield V1.1
  252. but many SD cards will fail with GPS Shield V1.0.
  253. Added file ArduinoPins.h for pin definitions.
  254. More error printout in examples.
  255. 25 Nov 2009
  256. Added new functions for SdFile class:
  257. dateTimeCallback(), dirEntry(), isRoot(), isSubDir, ls(),
  258. makeDir(), printDirName(), printFatDate(), printFatTime(),
  259. printTwoDigits(), rmDir(), and rmRStar().
  260. Added new examples to test and illustrate use of new functions.
  261. Removed sdCard() from SdFile class.
  262. Fixed several bugs.
  263. 12 Nov 2009
  264. Major rewrite of the version of SdFat that was included with
  265. the WaveRP library.
  266. This is a preview that is being released to obtain comments
  267. from several colleagues and future users.