├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── doc ├── Doxyfile ├── SdErrorCodes.txt ├── SdFat.html ├── ZipMsg │ └── index.html ├── clean_html.bat ├── del_html.bat ├── html.zip ├── html │ └── index.html └── mainpage.h ├── examples ├── AvrAdcLogger │ ├── AvrAdcLogger.h │ └── AvrAdcLogger.ino ├── BackwardCompatibility │ └── BackwardCompatibility.ino ├── BufferedPrint │ └── BufferedPrint.ino ├── DirectoryFunctions │ └── DirectoryFunctions.ino ├── ExFatLogger │ ├── ExFatLogger.h │ └── ExFatLogger.ino ├── MinimumSizeSdReader │ └── MinimumSizeSdReader.ino ├── OpenNext │ └── OpenNext.ino ├── QuickStart │ └── QuickStart.ino ├── ReadCsvFile │ └── ReadCsvFile.ino ├── RtcTimestampTest │ └── RtcTimestampTest.ino ├── SdErrorCodes │ └── SdErrorCodes.ino ├── SdFormatter │ └── SdFormatter.ino ├── SdInfo │ └── SdInfo.ino ├── SoftwareSpi │ └── SoftwareSpi.ino ├── TeensyDmaAdcLogger │ └── TeensyDmaAdcLogger.ino ├── TeensyRtcTimestamp │ └── TeensyRtcTimestamp.ino ├── TeensySdioDemo │ └── TeensySdioDemo.ino ├── TeensySdioLogger │ └── TeensySdioLogger.ino ├── UnicodeFilenames │ └── UnicodeFilenames.ino ├── UserChipSelectFunction │ └── UserChipSelectFunction.ino ├── UserSPIDriver │ └── UserSPIDriver.ino ├── bench │ └── bench.ino └── rename │ └── rename.ino ├── extras ├── USB_Host_Shield │ ├── USB_Host_Shield_2.0.zip │ ├── UsbHostShieldDiff.txt │ └── readme.txt ├── attic │ ├── PrintBasic.cpp │ ├── PrintBasic.h │ ├── PrintTemplates.h │ └── SysCallBareUno.cpp ├── cpplint.bat ├── cpplint.py └── cpplint.sh ├── library.properties └── src ├── BufferedPrint.h ├── DigitalIO ├── DigitalPin.h ├── SoftSPI.h ├── boards │ ├── AvrDevelopersGpioPinMap.h │ ├── BobuinoGpioPinMap.h │ ├── GpioPinMap.h │ ├── LeonardoGpioPinMap.h │ ├── MegaGpioPinMap.h │ ├── SleepingBeautyGpioPinMap.h │ ├── Standard1284GpioPinMap.h │ ├── Teensy2GpioPinMap.h │ ├── Teensy2ppGpioPinMap.h │ └── UnoGpioPinMap.h └── readme.txt ├── ExFatLib ├── ExFatConfig.h ├── ExFatDbg.cpp ├── ExFatFile.cpp ├── ExFatFile.h ├── ExFatFilePrint.cpp ├── ExFatFileWrite.cpp ├── ExFatFormatter.cpp ├── ExFatFormatter.h ├── ExFatLib.h ├── ExFatName.cpp ├── ExFatPartition.cpp ├── ExFatPartition.h ├── ExFatVolume.cpp ├── ExFatVolume.h └── upcase.cpp ├── FatLib ├── FatDbg.cpp ├── FatFile.cpp ├── FatFile.h ├── FatFileLFN.cpp ├── FatFilePrint.cpp ├── FatFileSFN.cpp ├── FatFormatter.cpp ├── FatFormatter.h ├── FatLib.h ├── FatName.cpp ├── FatPartition.cpp ├── FatPartition.h ├── FatVolume.cpp └── FatVolume.h ├── FreeStack.cpp ├── FreeStack.h ├── FsLib ├── FsFile.cpp ├── FsFile.h ├── FsFormatter.h ├── FsLib.h ├── FsNew.cpp ├── FsNew.h ├── FsVolume.cpp └── FsVolume.h ├── MinimumSerial.cpp ├── MinimumSerial.h ├── RingBuf.h ├── SdCard ├── CPPLINT.cfg ├── SdCard.h ├── SdCardInfo.cpp ├── SdCardInfo.h ├── SdCardInterface.h ├── SdSpiCard.cpp ├── SdSpiCard.h ├── SdioCard.h ├── SdioTeensy.cpp └── SdioTeensy.h ├── SdFat.h ├── SdFatConfig.h ├── SpiDriver ├── SdSpiArduinoDriver.h ├── SdSpiArtemis.cpp ├── SdSpiAvr.h ├── SdSpiBareUnoDriver.h ├── SdSpiBaseClass.h ├── SdSpiChipSelect.cpp ├── SdSpiDriver.h ├── SdSpiDue.cpp ├── SdSpiESP.cpp ├── SdSpiLibDriver.h ├── SdSpiParticle.cpp ├── SdSpiSTM32.cpp ├── SdSpiSTM32Core.cpp ├── SdSpiSoftDriver.h └── SdSpiTeensy3.cpp ├── common ├── ArduinoFiles.h ├── CPPLINT.cfg ├── CompileDateTime.h ├── DebugMacros.h ├── FmtNumber.cpp ├── FmtNumber.h ├── FsApiConstants.h ├── FsBlockDevice.h ├── FsBlockDeviceInterface.h ├── FsCache.cpp ├── FsCache.h ├── FsDateTime.cpp ├── FsDateTime.h ├── FsName.cpp ├── FsName.h ├── FsStructs.cpp ├── FsStructs.h ├── FsUtf.cpp ├── FsUtf.h ├── PrintBasic.cpp ├── PrintBasic.h ├── SysCall.h ├── upcase.cpp └── upcase.h ├── iostream ├── ArduinoStream.h ├── StdioStream.cpp ├── StdioStream.h ├── StreamBaseClass.cpp ├── bufstream.h ├── fstream.h ├── ios.h ├── iostream.h ├── istream.cpp ├── istream.h ├── ostream.cpp └── ostream.h └── sdios.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/README.md -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/SdErrorCodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/SdErrorCodes.txt -------------------------------------------------------------------------------- /doc/SdFat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/SdFat.html -------------------------------------------------------------------------------- /doc/ZipMsg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/ZipMsg/index.html -------------------------------------------------------------------------------- /doc/clean_html.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/clean_html.bat -------------------------------------------------------------------------------- /doc/del_html.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/del_html.bat -------------------------------------------------------------------------------- /doc/html.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/html.zip -------------------------------------------------------------------------------- /doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/html/index.html -------------------------------------------------------------------------------- /doc/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/doc/mainpage.h -------------------------------------------------------------------------------- /examples/AvrAdcLogger/AvrAdcLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/AvrAdcLogger/AvrAdcLogger.h -------------------------------------------------------------------------------- /examples/AvrAdcLogger/AvrAdcLogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/AvrAdcLogger/AvrAdcLogger.ino -------------------------------------------------------------------------------- /examples/BackwardCompatibility/BackwardCompatibility.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/BackwardCompatibility/BackwardCompatibility.ino -------------------------------------------------------------------------------- /examples/BufferedPrint/BufferedPrint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/BufferedPrint/BufferedPrint.ino -------------------------------------------------------------------------------- /examples/DirectoryFunctions/DirectoryFunctions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/DirectoryFunctions/DirectoryFunctions.ino -------------------------------------------------------------------------------- /examples/ExFatLogger/ExFatLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/ExFatLogger/ExFatLogger.h -------------------------------------------------------------------------------- /examples/ExFatLogger/ExFatLogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/ExFatLogger/ExFatLogger.ino -------------------------------------------------------------------------------- /examples/MinimumSizeSdReader/MinimumSizeSdReader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/MinimumSizeSdReader/MinimumSizeSdReader.ino -------------------------------------------------------------------------------- /examples/OpenNext/OpenNext.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/OpenNext/OpenNext.ino -------------------------------------------------------------------------------- /examples/QuickStart/QuickStart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/QuickStart/QuickStart.ino -------------------------------------------------------------------------------- /examples/ReadCsvFile/ReadCsvFile.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/ReadCsvFile/ReadCsvFile.ino -------------------------------------------------------------------------------- /examples/RtcTimestampTest/RtcTimestampTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/RtcTimestampTest/RtcTimestampTest.ino -------------------------------------------------------------------------------- /examples/SdErrorCodes/SdErrorCodes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/SdErrorCodes/SdErrorCodes.ino -------------------------------------------------------------------------------- /examples/SdFormatter/SdFormatter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/SdFormatter/SdFormatter.ino -------------------------------------------------------------------------------- /examples/SdInfo/SdInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/SdInfo/SdInfo.ino -------------------------------------------------------------------------------- /examples/SoftwareSpi/SoftwareSpi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/SoftwareSpi/SoftwareSpi.ino -------------------------------------------------------------------------------- /examples/TeensyDmaAdcLogger/TeensyDmaAdcLogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/TeensyDmaAdcLogger/TeensyDmaAdcLogger.ino -------------------------------------------------------------------------------- /examples/TeensyRtcTimestamp/TeensyRtcTimestamp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/TeensyRtcTimestamp/TeensyRtcTimestamp.ino -------------------------------------------------------------------------------- /examples/TeensySdioDemo/TeensySdioDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/TeensySdioDemo/TeensySdioDemo.ino -------------------------------------------------------------------------------- /examples/TeensySdioLogger/TeensySdioLogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/TeensySdioLogger/TeensySdioLogger.ino -------------------------------------------------------------------------------- /examples/UnicodeFilenames/UnicodeFilenames.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/UnicodeFilenames/UnicodeFilenames.ino -------------------------------------------------------------------------------- /examples/UserChipSelectFunction/UserChipSelectFunction.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/UserChipSelectFunction/UserChipSelectFunction.ino -------------------------------------------------------------------------------- /examples/UserSPIDriver/UserSPIDriver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/UserSPIDriver/UserSPIDriver.ino -------------------------------------------------------------------------------- /examples/bench/bench.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/bench/bench.ino -------------------------------------------------------------------------------- /examples/rename/rename.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/examples/rename/rename.ino -------------------------------------------------------------------------------- /extras/USB_Host_Shield/USB_Host_Shield_2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/USB_Host_Shield/USB_Host_Shield_2.0.zip -------------------------------------------------------------------------------- /extras/USB_Host_Shield/UsbHostShieldDiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/USB_Host_Shield/UsbHostShieldDiff.txt -------------------------------------------------------------------------------- /extras/USB_Host_Shield/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/USB_Host_Shield/readme.txt -------------------------------------------------------------------------------- /extras/attic/PrintBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/attic/PrintBasic.cpp -------------------------------------------------------------------------------- /extras/attic/PrintBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/attic/PrintBasic.h -------------------------------------------------------------------------------- /extras/attic/PrintTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/attic/PrintTemplates.h -------------------------------------------------------------------------------- /extras/attic/SysCallBareUno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/attic/SysCallBareUno.cpp -------------------------------------------------------------------------------- /extras/cpplint.bat: -------------------------------------------------------------------------------- 1 | sh cpplint.sh 2 | pause -------------------------------------------------------------------------------- /extras/cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/cpplint.py -------------------------------------------------------------------------------- /extras/cpplint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/extras/cpplint.sh -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/library.properties -------------------------------------------------------------------------------- /src/BufferedPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/BufferedPrint.h -------------------------------------------------------------------------------- /src/DigitalIO/DigitalPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/DigitalPin.h -------------------------------------------------------------------------------- /src/DigitalIO/SoftSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/SoftSPI.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/AvrDevelopersGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/AvrDevelopersGpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/BobuinoGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/BobuinoGpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/GpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/GpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/LeonardoGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/LeonardoGpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/MegaGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/MegaGpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/SleepingBeautyGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/SleepingBeautyGpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/Standard1284GpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/Standard1284GpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/Teensy2GpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/Teensy2GpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/Teensy2ppGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/Teensy2ppGpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/boards/UnoGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/boards/UnoGpioPinMap.h -------------------------------------------------------------------------------- /src/DigitalIO/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/DigitalIO/readme.txt -------------------------------------------------------------------------------- /src/ExFatLib/ExFatConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatConfig.h -------------------------------------------------------------------------------- /src/ExFatLib/ExFatDbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatDbg.cpp -------------------------------------------------------------------------------- /src/ExFatLib/ExFatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatFile.cpp -------------------------------------------------------------------------------- /src/ExFatLib/ExFatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatFile.h -------------------------------------------------------------------------------- /src/ExFatLib/ExFatFilePrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatFilePrint.cpp -------------------------------------------------------------------------------- /src/ExFatLib/ExFatFileWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatFileWrite.cpp -------------------------------------------------------------------------------- /src/ExFatLib/ExFatFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatFormatter.cpp -------------------------------------------------------------------------------- /src/ExFatLib/ExFatFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatFormatter.h -------------------------------------------------------------------------------- /src/ExFatLib/ExFatLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatLib.h -------------------------------------------------------------------------------- /src/ExFatLib/ExFatName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatName.cpp -------------------------------------------------------------------------------- /src/ExFatLib/ExFatPartition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatPartition.cpp -------------------------------------------------------------------------------- /src/ExFatLib/ExFatPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatPartition.h -------------------------------------------------------------------------------- /src/ExFatLib/ExFatVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatVolume.cpp -------------------------------------------------------------------------------- /src/ExFatLib/ExFatVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/ExFatLib/ExFatVolume.h -------------------------------------------------------------------------------- /src/ExFatLib/upcase.cpp: -------------------------------------------------------------------------------- 1 | // this file no longer used 2 | -------------------------------------------------------------------------------- /src/FatLib/FatDbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatDbg.cpp -------------------------------------------------------------------------------- /src/FatLib/FatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatFile.cpp -------------------------------------------------------------------------------- /src/FatLib/FatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatFile.h -------------------------------------------------------------------------------- /src/FatLib/FatFileLFN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatFileLFN.cpp -------------------------------------------------------------------------------- /src/FatLib/FatFilePrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatFilePrint.cpp -------------------------------------------------------------------------------- /src/FatLib/FatFileSFN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatFileSFN.cpp -------------------------------------------------------------------------------- /src/FatLib/FatFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatFormatter.cpp -------------------------------------------------------------------------------- /src/FatLib/FatFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatFormatter.h -------------------------------------------------------------------------------- /src/FatLib/FatLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatLib.h -------------------------------------------------------------------------------- /src/FatLib/FatName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatName.cpp -------------------------------------------------------------------------------- /src/FatLib/FatPartition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatPartition.cpp -------------------------------------------------------------------------------- /src/FatLib/FatPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatPartition.h -------------------------------------------------------------------------------- /src/FatLib/FatVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatVolume.cpp -------------------------------------------------------------------------------- /src/FatLib/FatVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FatLib/FatVolume.h -------------------------------------------------------------------------------- /src/FreeStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FreeStack.cpp -------------------------------------------------------------------------------- /src/FreeStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FreeStack.h -------------------------------------------------------------------------------- /src/FsLib/FsFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FsLib/FsFile.cpp -------------------------------------------------------------------------------- /src/FsLib/FsFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FsLib/FsFile.h -------------------------------------------------------------------------------- /src/FsLib/FsFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FsLib/FsFormatter.h -------------------------------------------------------------------------------- /src/FsLib/FsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FsLib/FsLib.h -------------------------------------------------------------------------------- /src/FsLib/FsNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FsLib/FsNew.cpp -------------------------------------------------------------------------------- /src/FsLib/FsNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FsLib/FsNew.h -------------------------------------------------------------------------------- /src/FsLib/FsVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FsLib/FsVolume.cpp -------------------------------------------------------------------------------- /src/FsLib/FsVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/FsLib/FsVolume.h -------------------------------------------------------------------------------- /src/MinimumSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/MinimumSerial.cpp -------------------------------------------------------------------------------- /src/MinimumSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/MinimumSerial.h -------------------------------------------------------------------------------- /src/RingBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/RingBuf.h -------------------------------------------------------------------------------- /src/SdCard/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | exclude_files=SdioTeensy.h -------------------------------------------------------------------------------- /src/SdCard/SdCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdCard.h -------------------------------------------------------------------------------- /src/SdCard/SdCardInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdCardInfo.cpp -------------------------------------------------------------------------------- /src/SdCard/SdCardInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdCardInfo.h -------------------------------------------------------------------------------- /src/SdCard/SdCardInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdCardInterface.h -------------------------------------------------------------------------------- /src/SdCard/SdSpiCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdSpiCard.cpp -------------------------------------------------------------------------------- /src/SdCard/SdSpiCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdSpiCard.h -------------------------------------------------------------------------------- /src/SdCard/SdioCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdioCard.h -------------------------------------------------------------------------------- /src/SdCard/SdioTeensy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdioTeensy.cpp -------------------------------------------------------------------------------- /src/SdCard/SdioTeensy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdCard/SdioTeensy.h -------------------------------------------------------------------------------- /src/SdFat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdFat.h -------------------------------------------------------------------------------- /src/SdFatConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SdFatConfig.h -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiArduinoDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiArduinoDriver.h -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiArtemis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiArtemis.cpp -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiAvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiAvr.h -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiBareUnoDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiBareUnoDriver.h -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiBaseClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiBaseClass.h -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiChipSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiChipSelect.cpp -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiDriver.h -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiDue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiDue.cpp -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiESP.cpp -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiLibDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiLibDriver.h -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiParticle.cpp -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiSTM32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiSTM32.cpp -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiSTM32Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiSTM32Core.cpp -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiSoftDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiSoftDriver.h -------------------------------------------------------------------------------- /src/SpiDriver/SdSpiTeensy3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/SpiDriver/SdSpiTeensy3.cpp -------------------------------------------------------------------------------- /src/common/ArduinoFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/ArduinoFiles.h -------------------------------------------------------------------------------- /src/common/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/CPPLINT.cfg -------------------------------------------------------------------------------- /src/common/CompileDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/CompileDateTime.h -------------------------------------------------------------------------------- /src/common/DebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/DebugMacros.h -------------------------------------------------------------------------------- /src/common/FmtNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FmtNumber.cpp -------------------------------------------------------------------------------- /src/common/FmtNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FmtNumber.h -------------------------------------------------------------------------------- /src/common/FsApiConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsApiConstants.h -------------------------------------------------------------------------------- /src/common/FsBlockDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsBlockDevice.h -------------------------------------------------------------------------------- /src/common/FsBlockDeviceInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsBlockDeviceInterface.h -------------------------------------------------------------------------------- /src/common/FsCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsCache.cpp -------------------------------------------------------------------------------- /src/common/FsCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsCache.h -------------------------------------------------------------------------------- /src/common/FsDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsDateTime.cpp -------------------------------------------------------------------------------- /src/common/FsDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsDateTime.h -------------------------------------------------------------------------------- /src/common/FsName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsName.cpp -------------------------------------------------------------------------------- /src/common/FsName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsName.h -------------------------------------------------------------------------------- /src/common/FsStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsStructs.cpp -------------------------------------------------------------------------------- /src/common/FsStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsStructs.h -------------------------------------------------------------------------------- /src/common/FsUtf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsUtf.cpp -------------------------------------------------------------------------------- /src/common/FsUtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/FsUtf.h -------------------------------------------------------------------------------- /src/common/PrintBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/PrintBasic.cpp -------------------------------------------------------------------------------- /src/common/PrintBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/PrintBasic.h -------------------------------------------------------------------------------- /src/common/SysCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/SysCall.h -------------------------------------------------------------------------------- /src/common/upcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/upcase.cpp -------------------------------------------------------------------------------- /src/common/upcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/common/upcase.h -------------------------------------------------------------------------------- /src/iostream/ArduinoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/ArduinoStream.h -------------------------------------------------------------------------------- /src/iostream/StdioStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/StdioStream.cpp -------------------------------------------------------------------------------- /src/iostream/StdioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/StdioStream.h -------------------------------------------------------------------------------- /src/iostream/StreamBaseClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/StreamBaseClass.cpp -------------------------------------------------------------------------------- /src/iostream/bufstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/bufstream.h -------------------------------------------------------------------------------- /src/iostream/fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/fstream.h -------------------------------------------------------------------------------- /src/iostream/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/ios.h -------------------------------------------------------------------------------- /src/iostream/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/iostream.h -------------------------------------------------------------------------------- /src/iostream/istream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/istream.cpp -------------------------------------------------------------------------------- /src/iostream/istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/istream.h -------------------------------------------------------------------------------- /src/iostream/ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/ostream.cpp -------------------------------------------------------------------------------- /src/iostream/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/iostream/ostream.h -------------------------------------------------------------------------------- /src/sdios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SdFat/HEAD/src/sdios.h --------------------------------------------------------------------------------