Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Bill Greiman 8408432732 New core FAT implementation il y a 10 ans
AnalogBinLoggerExtras Fix bintocsv dll problem il y a 10 ans
SdFat New core FAT implementation il y a 10 ans
SdFatTestSuite New core FAT implementation il y a 10 ans
html New core FAT implementation il y a 10 ans
.gitattributes :confetti_ball: Added .gitattributes & .gitignore files il y a 11 ans
.gitignore :confetti_ball: Added .gitattributes & .gitignore files il y a 11 ans
ArduinoDue.txt Beta SPI transactions and Due/Teensy 3.x SoftSPI il y a 11 ans
MultipleCards.txt Beta SPI transactions and Due/Teensy 3.x SoftSPI il y a 11 ans
QuickStart.txt Beta SPI transactions and Due/Teensy 3.x SoftSPI il y a 11 ans
SPI_Transactions.txt Beta SPI transactions and Due/Teensy 3.x SoftSPI il y a 11 ans
SdFat.html Beta SPI transactions and Due/Teensy 3.x SoftSPI il y a 11 ans
SdLevel.png Beta SPI transactions and Due/Teensy 3.x SoftSPI il y a 11 ans
SoftwareSPI.txt New core FAT implementation il y a 10 ans
WorkingDirectory.txt Beta SPI transactions and Due/Teensy 3.x SoftSPI il y a 11 ans
changes.txt New core FAT implementation il y a 10 ans
readme.txt New core FAT implementation il y a 10 ans
troubleshooting.txt Beta SPI transactions and Due/Teensy 3.x SoftSPI il y a 11 ans

readme.txt

This is a beta version with major changes so bugs and compatibility
problems are likely.

Please report problems to the email address listed in the
"Bugs and Comments" section of the html documentation.

Here are the most recent changes:

Replaced the core SdFat code with FatLib, a generic FAT12/FAT16/FAT32
library. This may result in bugs and backward compatibility problems.

Added SdFatSoftSpi, a software SPI template class. See the SofwareSpi
example.

Added SdFatLibSpi, a class that uses the Arduino SPI.h library.

Allow simultaneous use of hardware and software SPI with multiple cards.
See the ThreeCard example.

Added minimal Long File Name support. See the LongFileName example.

Added the "File" class for compatibility with the Arduino SD.h library

Added StreamParseInt example to demonstrate the SD.h API.


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

SdFat requires Arduino 1.05 or greater.

To use SdFat, unzip the download file and place the SdFat folder
into the libraries sub-folder in your main sketch folder.

For more information see the Manual installation section of this guide:

http://arduino.cc/en/Guide/Libraries

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

Read changes.txt if you have used previous releases of this library.

Read troubleshooting.txt for common hardware problems.

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, SdBaseFile, SdFile, File,
StdioStream, ifstream, ofstream, and others.

Limited support is available for Long File Names. See the LongFileName
example. Support for creating Long File Names will be added in the future.

Support has been added for Software SPI on AVR, Due, and Teensy 3.1 boards.

See the ThreeCard example for use of multiple SD cards with simultaneous
use of hardware and software SPI.

SPI transactions are supported. See SoftwareSPI.txt and SPI_Transactions.txt
for more information.

A new class, "File", has been added to provide compatibility with the Arduino
SD.h library. To use SdFat with programs written for SD.h replace

#include <SD.h>

with these two lines:

#include <SdFat.h>
SdFat SD;

Please continue by reading the html documentation.

Updated 14 Nov 2014