Sin descripción

Bill Greiman 7d0261d144 Fix open bug hace 4 años
examples 3b79f38cb5 Support for SdFatLite library. hace 6 años
extras 3b79f38cb5 Support for SdFatLite library. hace 6 años
src 7d0261d144 Fix open bug hace 4 años
.gitattributes 3f7f5cd8e9 Initial Commit hace 10 años
.gitignore 3f7f5cd8e9 Initial Commit hace 10 años
LICENSE.md f2424ef753 Add LICENSE.md hace 7 años
README.md 7417ee943c Particle Gen3 support with POSIX open flags hace 6 años
library.properties 7d0261d144 Fix open bug hace 4 años

README.md

The Arduino SdFat library provides read/write access to FAT16/FAT32 file systems on SD/SDHC flash cards.

SdFat requires Arduino 1.6x or greater.

Key changes:

Support for multiple SPI ports now uses a pointer to a SPIClass object.

See the STM32Test example.

explicit SdFat(SPIClass* spiPort);
\\ or
explicit SdFatEX(SPIClass* spiPort);

Open flags now follow POSIX conventions. O_RDONLY is the same as O_READ and O_WRONLY is the same as O_WRITE. One and only one of of the mode flags, O_RDONLY, O_RDWR, or O_WRONLY is required.

Open flags for Particle Gen3 and ARM boards are now defined by fcntl.h. See SdFatConfig.h for options.

Support for particle Gen3 devices.

New cluster allocation algorithm.

Please read changes.txt and the html documentation in the extras folder for more information.

Please report problems as issues.

A number of configuration options can be set by editing SdFatConfig.h define macros. See the html documentation for details

Please read the html documentation for this library. Start with html/index.html and read the Main Page. Next go to the Classes tab and read the documentation for the classes SdFat, SdFatEX, SdBaseFile, SdFile, File, StdioStream, ifstream, ofstream, and others.

Please continue by reading the html documentation in SdFat/extras/html

Updated 28 Dec 2018