Arduino/libraries/SD/src
Cristian Maglie 954f59d9ce Bridge: Fixed File "duplicate definitions" when using SD and Bridge libraries together
The two File classes have been enclosed into different namespaces.

To guarantee compatibility with old sketches that uses only one of the two
libraries an additional line:

   using namespace xxxxx;

has been added so the users can still use "File" where there is no ambiguity.

BridgeLib::File and SDLib::File classes have been also aliased to BridgeFile
and SDFile respectively, users are encouraged to use that instead of File.
2015-06-30 11:49:53 +02:00
..
utility SD: avoid timeout lock if millis() approaches 2^16 2015-03-23 15:28:19 +01:00
File.cpp Removed destructor from File.cpp and SD.h as it leads to unexpected close/destructed objects #814 2013-10-15 17:09:20 +02:00
README.txt Ethernet, SD and LiquidCrystal to the new library format 2013-06-26 19:13:04 +02:00
SD.cpp Bridge: Fixed File "duplicate definitions" when using SD and Bridge libraries together 2015-06-30 11:49:53 +02:00
SD.h Bridge: Fixed File "duplicate definitions" when using SD and Bridge libraries together 2015-06-30 11:49:53 +02:00

README.txt

** SD - a slightly more friendly wrapper for sdfatlib **

This library aims to expose a subset of SD card functionality in the
form of a higher level "wrapper" object.

License: GNU General Public License V3
         (Because sdfatlib is licensed with this.)

(C) Copyright 2010 SparkFun Electronics

Now better than ever with optimization, multiple file support, directory handling, etc - ladyada!