Няма описание

Bill Greiman 7d0261d144 Fix open bug преди 5 години
examples 3b79f38cb5 Support for SdFatLite library. преди 6 години
extras 3b79f38cb5 Support for SdFatLite library. преди 6 години
src 7d0261d144 Fix open bug преди 5 години
.gitattributes 3f7f5cd8e9 Initial Commit преди 11 години
.gitignore 3f7f5cd8e9 Initial Commit преди 11 години
LICENSE.md f2424ef753 Add LICENSE.md преди 7 години
README.md 7417ee943c Particle Gen3 support with POSIX open flags преди 6 години
library.properties 7d0261d144 Fix open bug преди 5 години

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