Fără Descriere

Bill Greiman 7d0261d144 Fix open bug 5 ani în urmă
examples 3b79f38cb5 Support for SdFatLite library. 6 ani în urmă
extras 3b79f38cb5 Support for SdFatLite library. 6 ani în urmă
src 7d0261d144 Fix open bug 5 ani în urmă
.gitattributes 3f7f5cd8e9 Initial Commit 11 ani în urmă
.gitignore 3f7f5cd8e9 Initial Commit 11 ani în urmă
LICENSE.md f2424ef753 Add LICENSE.md 7 ani în urmă
README.md 7417ee943c Particle Gen3 support with POSIX open flags 6 ani în urmă
library.properties 7d0261d144 Fix open bug 5 ani în urmă

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