Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

README.md 1.8KB

8 år sedan
8 år sedan
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ### Warning: This version has major changes so it may be unstable.
  2. Teensy 3.5/3.6 SDIO support has been added. Try the TeensySdioDemo example.
  3. Many other example will work with Teensy SDIO if you use the SdFatSdio classes
  4. and call begin with no parameters.
  5. ```
  6. SdFatSdio sd;
  7. ....
  8. if (!sd.begin()) {
  9. // Handle failure.
  10. }
  11. ```
  12. Recent versions of the Arduino IDE have bugs that may cause SdFat-beta to crash.
  13. https://forum.arduino.cc/index.php?topic=419264.0
  14. SdFat-beta was tested using Arduino AVR boards 1.6.11.
  15. If you are using IDE 1.6.11 you must also install AVR boards 1.6.11, not
  16. 1.6.12 or 1.6.13.
  17. If you are using Arduino IDE 1.6.11, do Tools > Board > Boards Manager > Arduino AVR Boards > 1.6.11 > Install > Close.
  18. Key changes:
  19. The SPI divisor has been replaced by SPISettings.
  20. There are two new classes, SdFatEX and SdFatSoftSpiEX.
  21. Please read changes.txt and the html documentation for more information.
  22. Please report problems as issues.
  23. The Arduino SdFat library provides read/write access to FAT16/FAT32
  24. file systems on SD/SDHC flash cards.
  25. SdFat requires Arduino 1.6x or greater.
  26. To use SdFat, unzip the download file and place the SdFat folder
  27. into the libraries sub-folder in your main sketch folder.
  28. For more information see the Manual installation section of this guide:
  29. http://arduino.cc/en/Guide/Libraries
  30. A number of configuration options can be set by editing SdFatConfig.h
  31. define macros. See the html documentation for details
  32. Read changes.txt if you have used previous releases of this library.
  33. Please read the html documentation for this library. Start with
  34. html/index.html and read the Main Page. Next go to the Classes tab and
  35. read the documentation for the classes SdFat, SdFatEX, SdBaseFile,
  36. SdFile, File, StdioStream, ifstream, ofstream, and others.
  37. Please continue by reading the html documentation.
  38. Updated 5 Sep 2016