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.

readme.txt 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. This is a beta version with major changes so bugs and compatibility
  2. problems are likely.
  3. Please report problems to the email address listed in the
  4. "Bugs and Comments" section of the html documentation.
  5. Here are the most recent changes:
  6. Added support for Long File Names. See the LongFileName example.
  7. Replaced the core SdFat code with FatLib, a generic FAT12/FAT16/FAT32
  8. library. This may result in bugs and backward compatibility problems.
  9. Added SdFatSoftSpi, a software SPI template class. See the SofwareSpi
  10. example.
  11. Added SdFatLibSpi, a class that uses the Arduino SPI.h library.
  12. Allow simultaneous use of hardware and software SPI with multiple cards.
  13. See the ThreeCard example.
  14. Added the "File" class for compatibility with the Arduino SD.h library
  15. Added StreamParseInt example to demonstrate the SD.h API.
  16. The Arduino SdFat library provides read/write access to FAT16/FAT32
  17. file systems on SD/SDHC flash cards.
  18. SdFat requires Arduino 1.05 or greater.
  19. To use SdFat, unzip the download file and place the SdFat folder
  20. into the libraries sub-folder in your main sketch folder.
  21. For more information see the Manual installation section of this guide:
  22. http://arduino.cc/en/Guide/Libraries
  23. A number of configuration options can be set by editing SdFatConfig.h
  24. #define macros. See the html documentation for details
  25. Read changes.txt if you have used previous releases of this library.
  26. Please read the html documentation for this library. Start with
  27. html/index.html and read the Main Page. Next go to the Classes tab and
  28. read the documentation for the classes SdFat, SdBaseFile, SdFile, File,
  29. StdioStream, ifstream, ofstream, and others.
  30. Support has been added for Software SPI on AVR, Due, and Teensy 3.1 boards.
  31. See the ThreeCard example for use of multiple SD cards with simultaneous
  32. use of hardware and software SPI.
  33. A new class, "File", has been added to provide compatibility with the Arduino
  34. SD.h library. To use SdFat with programs written for SD.h replace
  35. #include <SD.h>
  36. with these two lines:
  37. #include <SdFat.h>
  38. SdFat SD;
  39. Please continue by reading the html documentation.
  40. Updated 04 Dec 2014