No description
Find a file
2018-12-29 09:05:00 -08:00
examples Particle Gen3 support with POSIX open flags 2018-12-28 11:04:01 -08:00
extras Particle Gen3 support with POSIX open flags 2018-12-28 11:04:01 -08:00
src Fix iinitialization for older cards 2018-12-29 09:05:00 -08:00
.gitattributes Initial Commit 2014-08-06 05:05:57 -07:00
.gitignore Initial Commit 2014-08-06 05:05:57 -07:00
library.properties Fix iinitialization for older cards 2018-12-29 09:05:00 -08:00
LICENSE.md Add LICENSE.md 2017-10-04 08:45:41 -07:00
README.md Particle Gen3 support with POSIX open flags 2018-12-28 11:04:01 -08:00

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