@@ -28,7 +28,7 @@ | |||
//------------------------------------------------------------------------------ | |||
/** | |||
* \class SdFile | |||
* \brief SdBaseFile with Print. | |||
* \brief SdBaseFile with Arduino Stream. | |||
*/ | |||
class SdFile : public SdBaseFile, public Stream { | |||
public: | |||
@@ -53,8 +53,8 @@ class SdFile : public SdBaseFile, public Stream { | |||
int peek() {return SdBaseFile::peek();} | |||
/** Read the next byte from a file. | |||
* | |||
* \return For success read returns the next byte in the file as an int. | |||
* If an error occurs or end of file is reached -1 is returned. | |||
* \return For success return the next byte in the file as an int. | |||
* If an error occurs or end of file is reached return -1. | |||
*/ | |||
int read() {return SdBaseFile::read();} | |||
/** \return value of writeError */ |
@@ -0,0 +1,34 @@ | |||
// Simple demo of parsInt Arduino Stream member function. | |||
#include <SdFat.h> | |||
// SD card chip select pin - edit for your SD module. | |||
const uint8_t csPin = 10; | |||
SdFat sd; | |||
SdFile file; | |||
//------------------------------------------------------------------------------ | |||
void setup() { | |||
Serial.begin(9600); | |||
// Initialize the SD. | |||
if (!sd.begin(csPin)) { | |||
Serial.println(F("begin error")); | |||
return; | |||
} | |||
// Create and open the file. | |||
if (!file.open("stream.txt", O_RDWR|O_CREAT|O_TRUNC)) { | |||
Serial.println(F("open error")); | |||
return; | |||
} | |||
// Write a test number to the file. | |||
file.println("12345"); | |||
// Rewind the file and read the number with parseInt(). | |||
file.rewind(); | |||
int i = file.parseInt(); | |||
Serial.print(F("parseInt: ")); | |||
Serial.println(i); | |||
file.close(); | |||
} | |||
void loop() {} |
@@ -1,3 +1,17 @@ | |||
24 Oct 2014 | |||
Updated documentation. | |||
Added StreamParseInt example. | |||
23 Oct 2014 | |||
SdFile changed to Arduino Stream. | |||
Added Read SD OCR register. | |||
SdInfo example now prints OCR register. | |||
05 Sep 2014 | |||
Faster SdBaseFile::printField(); | |||
@@ -8,7 +22,7 @@ Added SdBaseFile::printField(float value, char term, uint8_t prec); | |||
Added support for Software SPI on Due and Teensy 3.1 | |||
Added support for SPI transacrions. | |||
Added support for SPI transactions. | |||
05 Aug 2014 | |||
@@ -85,7 +85,7 @@ Classes</h2></td></tr> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -83,7 +83,7 @@ Variables</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -69,7 +69,7 @@ Classes</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -111,7 +111,7 @@ Macros</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -555,7 +555,7 @@ Variables</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -56,12 +56,12 @@ Include dependency graph for SdBaseFile.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_base_file_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_base_file_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_base_file_8cpp" id="_arduino_2libraries_2_sd_fat_2_sd_base_file_8cpp"> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="302,96,369,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,320,244,347"/> <area shape="rect" id="node32" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,245,333,272"/> <area shape="rect" id="node45" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,171,444,197"/> <area shape="rect" id="node50" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,171,587,197"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node35" href="iostream_8h.html" title="iostream class " alt="" coords="341,320,424,347"/> <area shape="rect" id="node37" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node42" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node39" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node47" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,245,448,272"/> </map> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="315,96,383,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,171,253,197"/> <area shape="rect" id="node34" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,245,347,272"/> <area shape="rect" id="node47" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,171,457,197"/> <area shape="rect" id="node52" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,171,600,197"/> <area shape="rect" id="node9" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node13" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node17" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node20" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node26" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node37" href="iostream_8h.html" title="iostream class " alt="" coords="356,320,439,347"/> <area shape="rect" id="node39" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node44" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node41" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node49" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,245,461,272"/> </map> | |||
</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -82,7 +82,7 @@ Classes</h2></td></tr> | |||
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">internal type for istream do not use in user apps <a href="struct_fat_pos__t.html#details">More...</a><br/></td></tr> | |||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td></tr> | |||
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Base class for <a class="el" href="class_sd_file.html" title="SdBaseFile with Print. ">SdFile</a> with Print and C++ streams. <a href="class_sd_base_file.html#details">More...</a><br/></td></tr> | |||
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Base class for <a class="el" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. ">SdFile</a> with Print and C++ streams. <a href="class_sd_base_file.html#details">More...</a><br/></td></tr> | |||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> | |||
</table><table class="memberdecls"> | |||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="define-members"></a> | |||
@@ -275,7 +275,7 @@ Variables</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -59,7 +59,7 @@ Include dependency graph for SdBaseFilePrint.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_base_file_print_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_base_file_print_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_base_file_print_8cpp" id="_arduino_2libraries_2_sd_fat_2_sd_base_file_print_8cpp"> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="302,96,369,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,320,244,347"/> <area shape="rect" id="node32" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,245,333,272"/> <area shape="rect" id="node45" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,171,444,197"/> <area shape="rect" id="node50" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,171,587,197"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node35" href="iostream_8h.html" title="iostream class " alt="" coords="341,320,424,347"/> <area shape="rect" id="node37" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node42" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node39" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node47" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,245,448,272"/> </map> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="315,96,383,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,171,253,197"/> <area shape="rect" id="node34" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,245,347,272"/> <area shape="rect" id="node47" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,171,457,197"/> <area shape="rect" id="node52" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,171,600,197"/> <area shape="rect" id="node9" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node13" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node17" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node20" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node26" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node37" href="iostream_8h.html" title="iostream class " alt="" coords="356,320,439,347"/> <area shape="rect" id="node39" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node44" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node41" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node49" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,245,461,272"/> </map> | |||
</div> | |||
</div><table class="memberdecls"> | |||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a> | |||
@@ -157,7 +157,7 @@ template<typename Type > </div> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -56,12 +56,12 @@ Include dependency graph for SdFat.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_fat_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_fat_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_fat_8cpp" id="_arduino_2libraries_2_sd_fat_2_sd_fat_8cpp"> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="302,96,369,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,320,244,347"/> <area shape="rect" id="node32" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,245,333,272"/> <area shape="rect" id="node45" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,171,444,197"/> <area shape="rect" id="node50" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,171,587,197"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node35" href="iostream_8h.html" title="iostream class " alt="" coords="341,320,424,347"/> <area shape="rect" id="node37" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node42" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node39" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node47" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,245,448,272"/> </map> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="315,96,383,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,171,253,197"/> <area shape="rect" id="node34" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,245,347,272"/> <area shape="rect" id="node47" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,171,457,197"/> <area shape="rect" id="node52" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,171,600,197"/> <area shape="rect" id="node9" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node13" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node17" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node20" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node26" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node37" href="iostream_8h.html" title="iostream class " alt="" coords="356,320,439,347"/> <area shape="rect" id="node39" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node44" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node41" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node49" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,245,461,272"/> </map> | |||
</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -65,7 +65,7 @@ Include dependency graph for SdFat.h:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_fat_8h__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_fat_8h" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_fat_8h" id="_arduino_2libraries_2_sd_fat_2_sd_fat_8h"> | |||
<area shape="rect" id="node3" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,245,244,272"/> <area shape="rect" id="node30" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,171,333,197"/> <area shape="rect" id="node43" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,96,444,123"/> <area shape="rect" id="node48" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,96,587,123"/> <area shape="rect" id="node5" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,469,335,496"/> <area shape="rect" id="node9" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,768,109,795"/> <area shape="rect" id="node13" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,544,247,571"/> <area shape="rect" id="node16" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,619,307,645"/> <area shape="rect" id="node22" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,693,188,720"/> <area shape="rect" id="node33" href="iostream_8h.html" title="iostream class " alt="" coords="341,245,424,272"/> <area shape="rect" id="node35" href="istream_8h.html" title="istream class " alt="" coords="323,320,399,347"/> <area shape="rect" id="node40" href="ostream_8h.html" title="ostream class " alt="" coords="424,320,504,347"/> <area shape="rect" id="node37" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,395,387,421"/> <area shape="rect" id="node45" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,171,448,197"/> </map> | |||
<area shape="rect" id="node3" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,96,253,123"/> <area shape="rect" id="node32" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,171,347,197"/> <area shape="rect" id="node45" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,96,457,123"/> <area shape="rect" id="node50" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,96,600,123"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,469,335,496"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,768,109,795"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,544,247,571"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,619,307,645"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,693,188,720"/> <area shape="rect" id="node35" href="iostream_8h.html" title="iostream class " alt="" coords="356,245,439,272"/> <area shape="rect" id="node37" href="istream_8h.html" title="istream class " alt="" coords="323,320,399,347"/> <area shape="rect" id="node42" href="ostream_8h.html" title="ostream class " alt="" coords="424,320,504,347"/> <area shape="rect" id="node39" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,395,387,421"/> <area shape="rect" id="node47" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,171,461,197"/> </map> | |||
</div> | |||
</div><div class="textblock"><div class="dynheader"> | |||
This graph shows which files directly or indirectly include this file:</div> | |||
@@ -85,7 +85,7 @@ Classes</h2></td></tr> | |||
Macros</h2></td></tr> | |||
<tr class="memitem:a37bec5b50aeab45dfcad2149552d73fc"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="_sd_fat_8h.html#a37bec5b50aeab45dfcad2149552d73fc">DBG_FAIL_MACRO</a></td></tr> | |||
<tr class="separator:a37bec5b50aeab45dfcad2149552d73fc"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:aca25ecce379f446043bdee2c55304210"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="_sd_fat_8h.html#aca25ecce379f446043bdee2c55304210">SD_FAT_VERSION</a>   20140824</td></tr> | |||
<tr class="memitem:aca25ecce379f446043bdee2c55304210"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="_sd_fat_8h.html#aca25ecce379f446043bdee2c55304210">SD_FAT_VERSION</a>   20141023</td></tr> | |||
<tr class="separator:aca25ecce379f446043bdee2c55304210"><td class="memSeparator" colspan="2"> </td></tr> | |||
</table> | |||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> | |||
@@ -109,7 +109,7 @@ Macros</h2></td></tr> | |||
<div class="memproto"> | |||
<table class="memname"> | |||
<tr> | |||
<td class="memname">#define SD_FAT_VERSION   20140824</td> | |||
<td class="memname">#define SD_FAT_VERSION   20141023</td> | |||
</tr> | |||
</table> | |||
</div><div class="memdoc"> | |||
@@ -120,7 +120,7 @@ Macros</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -415,7 +415,7 @@ Variables</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -58,7 +58,7 @@ Include dependency graph for SdFatErrorPrint.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_fat_error_print_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_fat_error_print_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_fat_error_print_8cpp" id="_arduino_2libraries_2_sd_fat_2_sd_fat_error_print_8cpp"> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="302,96,369,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,320,244,347"/> <area shape="rect" id="node32" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,245,333,272"/> <area shape="rect" id="node45" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,171,444,197"/> <area shape="rect" id="node50" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,171,587,197"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node35" href="iostream_8h.html" title="iostream class " alt="" coords="341,320,424,347"/> <area shape="rect" id="node37" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node42" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node39" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node47" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,245,448,272"/> </map> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="315,96,383,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,171,253,197"/> <area shape="rect" id="node34" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,245,347,272"/> <area shape="rect" id="node47" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,171,457,197"/> <area shape="rect" id="node52" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,171,600,197"/> <area shape="rect" id="node9" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node13" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node17" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node20" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node26" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node37" href="iostream_8h.html" title="iostream class " alt="" coords="356,320,439,347"/> <area shape="rect" id="node39" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node44" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node41" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node49" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,245,461,272"/> </map> | |||
</div> | |||
</div><table class="memberdecls"> | |||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a> | |||
@@ -120,7 +120,7 @@ Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -60,7 +60,7 @@ Include dependency graph for SdFatUtil.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_fat_util_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_fat_util_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_fat_util_8cpp" id="_arduino_2libraries_2_sd_fat_2_sd_fat_util_8cpp"> | |||
<area shape="rect" id="node5" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="302,171,369,197"/> <area shape="rect" id="node54" href="_sd_fat_util_8h.html" title="Useful utility functions. " alt="" coords="253,96,339,123"/> <area shape="rect" id="node7" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,395,244,421"/> <area shape="rect" id="node34" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,320,333,347"/> <area shape="rect" id="node47" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,245,444,272"/> <area shape="rect" id="node52" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,245,587,272"/> <area shape="rect" id="node9" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,619,335,645"/> <area shape="rect" id="node13" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,917,109,944"/> <area shape="rect" id="node17" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,693,247,720"/> <area shape="rect" id="node20" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,768,307,795"/> <area shape="rect" id="node26" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,843,188,869"/> <area shape="rect" id="node37" href="iostream_8h.html" title="iostream class " alt="" coords="341,395,424,421"/> <area shape="rect" id="node39" href="istream_8h.html" title="istream class " alt="" coords="323,469,399,496"/> <area shape="rect" id="node44" href="ostream_8h.html" title="ostream class " alt="" coords="424,469,504,496"/> <area shape="rect" id="node41" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,544,387,571"/> <area shape="rect" id="node49" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,320,448,347"/> </map> | |||
<area shape="rect" id="node5" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="315,171,383,197"/> <area shape="rect" id="node56" href="_sd_fat_util_8h.html" title="Useful utility functions. " alt="" coords="266,96,352,123"/> <area shape="rect" id="node7" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,245,253,272"/> <area shape="rect" id="node36" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,320,347,347"/> <area shape="rect" id="node49" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,245,457,272"/> <area shape="rect" id="node54" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,245,600,272"/> <area shape="rect" id="node11" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,619,335,645"/> <area shape="rect" id="node15" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,917,109,944"/> <area shape="rect" id="node19" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,693,247,720"/> <area shape="rect" id="node22" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,768,307,795"/> <area shape="rect" id="node28" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,843,188,869"/> <area shape="rect" id="node39" href="iostream_8h.html" title="iostream class " alt="" coords="356,395,439,421"/> <area shape="rect" id="node41" href="istream_8h.html" title="istream class " alt="" coords="323,469,399,496"/> <area shape="rect" id="node46" href="ostream_8h.html" title="ostream class " alt="" coords="424,469,504,496"/> <area shape="rect" id="node43" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,544,387,571"/> <area shape="rect" id="node51" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,320,461,347"/> </map> | |||
</div> | |||
</div><table class="memberdecls"> | |||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="var-members"></a> | |||
@@ -98,7 +98,7 @@ Variables</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -63,7 +63,7 @@ Include dependency graph for SdFatUtil.h:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_fat_util_8h__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_fat_util_8h" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_fat_util_8h" id="_arduino_2libraries_2_sd_fat_2_sd_fat_util_8h"> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="302,96,369,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,320,244,347"/> <area shape="rect" id="node32" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,245,333,272"/> <area shape="rect" id="node45" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,171,444,197"/> <area shape="rect" id="node50" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,171,587,197"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node35" href="iostream_8h.html" title="iostream class " alt="" coords="341,320,424,347"/> <area shape="rect" id="node37" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node42" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node39" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node47" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,245,448,272"/> </map> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="315,96,383,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,171,253,197"/> <area shape="rect" id="node34" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,245,347,272"/> <area shape="rect" id="node47" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,171,457,197"/> <area shape="rect" id="node52" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,171,600,197"/> <area shape="rect" id="node9" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node13" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node17" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node20" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node26" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node37" href="iostream_8h.html" title="iostream class " alt="" coords="356,320,439,347"/> <area shape="rect" id="node39" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node44" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node41" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node49" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,245,461,272"/> </map> | |||
</div> | |||
</div><div class="textblock"><div class="dynheader"> | |||
This graph shows which files directly or indirectly include this file:</div> | |||
@@ -138,7 +138,7 @@ Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -53,7 +53,7 @@ | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -56,12 +56,12 @@ Include dependency graph for SdFile.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_file_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_file_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_file_8cpp" id="_arduino_2libraries_2_sd_fat_2_sd_file_8cpp"> | |||
<area shape="rect" id="node3" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="250,96,320,123"/> <area shape="rect" id="node5" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,171,335,197"/> <area shape="rect" id="node9" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,469,109,496"/> <area shape="rect" id="node13" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,245,247,272"/> <area shape="rect" id="node16" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,320,307,347"/> <area shape="rect" id="node22" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,395,188,421"/> </map> | |||
<area shape="rect" id="node3" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="165,96,235,123"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="203,171,303,197"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,469,109,496"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="147,245,240,272"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,320,307,347"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,395,188,421"/> </map> | |||
</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -53,15 +53,16 @@ | |||
</div><!--header--> | |||
<div class="contents"> | |||
<p><a class="el" href="class_sd_file.html" title="SdBaseFile with Print. ">SdFile</a> class. | |||
<p><a class="el" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. ">SdFile</a> class. | |||
<a href="#details">More...</a></p> | |||
<div class="textblock"><code>#include <<a class="el" href="_sd_base_file_8h.html">SdBaseFile.h</a>></code><br/> | |||
<div class="textblock"><code>#include <limits.h></code><br/> | |||
<code>#include <<a class="el" href="_sd_base_file_8h.html">SdBaseFile.h</a>></code><br/> | |||
</div><div class="textblock"><div class="dynheader"> | |||
Include dependency graph for SdFile.h:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_file_8h__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_file_8h" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_file_8h" id="_arduino_2libraries_2_sd_fat_2_sd_file_8h"> | |||
<area shape="rect" id="node3" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,96,335,123"/> <area shape="rect" id="node7" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,395,109,421"/> <area shape="rect" id="node11" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,171,247,197"/> <area shape="rect" id="node14" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,245,307,272"/> <area shape="rect" id="node20" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,320,188,347"/> </map> | |||
<area shape="rect" id="node5" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="203,96,303,123"/> <area shape="rect" id="node9" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,395,109,421"/> <area shape="rect" id="node13" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="147,171,240,197"/> <area shape="rect" id="node16" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,245,307,272"/> <area shape="rect" id="node22" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,320,188,347"/> </map> | |||
</div> | |||
</div><div class="textblock"><div class="dynheader"> | |||
This graph shows which files directly or indirectly include this file:</div> | |||
@@ -74,15 +75,15 @@ This graph shows which files directly or indirectly include this file:</div> | |||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> | |||
Classes</h2></td></tr> | |||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_file.html">SdFile</a></td></tr> | |||
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> with Print. <a href="class_sd_file.html#details">More...</a><br/></td></tr> | |||
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> with Arduino Stream. <a href="class_sd_file.html#details">More...</a><br/></td></tr> | |||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> | |||
</table> | |||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> | |||
<div class="textblock"><p><a class="el" href="class_sd_file.html" title="SdBaseFile with Print. ">SdFile</a> class. </p> | |||
<div class="textblock"><p><a class="el" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. ">SdFile</a> class. </p> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -179,7 +179,7 @@ Variables</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -61,7 +61,7 @@ Include dependency graph for SdSpiAVR.cpp:</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -61,7 +61,7 @@ Include dependency graph for SdSpiArduino.cpp:</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -61,7 +61,7 @@ Include dependency graph for SdSpiSAM3X.cpp:</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -61,7 +61,7 @@ Include dependency graph for SdSpiSoft.cpp:</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -61,7 +61,7 @@ Include dependency graph for SdSpiTeensy3.cpp:</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -56,12 +56,12 @@ Include dependency graph for SdStream.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_stream_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_stream_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_stream_8cpp" id="_arduino_2libraries_2_sd_fat_2_sd_stream_8cpp"> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="302,96,369,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,320,244,347"/> <area shape="rect" id="node32" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,245,333,272"/> <area shape="rect" id="node45" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,171,444,197"/> <area shape="rect" id="node50" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,171,587,197"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node35" href="iostream_8h.html" title="iostream class " alt="" coords="341,320,424,347"/> <area shape="rect" id="node37" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node42" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node39" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node47" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,245,448,272"/> </map> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="315,96,383,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,171,253,197"/> <area shape="rect" id="node34" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,245,347,272"/> <area shape="rect" id="node47" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,171,457,197"/> <area shape="rect" id="node52" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,171,600,197"/> <area shape="rect" id="node9" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node13" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node17" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node20" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node26" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node37" href="iostream_8h.html" title="iostream class " alt="" coords="356,320,439,347"/> <area shape="rect" id="node39" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node44" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node41" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node49" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,245,461,272"/> </map> | |||
</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -92,7 +92,7 @@ Classes</h2></td></tr> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -56,12 +56,12 @@ Include dependency graph for SdVolume.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_sd_volume_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_sd_volume_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_sd_volume_8cpp" id="_arduino_2libraries_2_sd_fat_2_sd_volume_8cpp"> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="302,96,369,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="174,320,244,347"/> <area shape="rect" id="node32" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,245,333,272"/> <area shape="rect" id="node45" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="326,171,444,197"/> <area shape="rect" id="node50" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="469,171,587,197"/> <area shape="rect" id="node7" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node11" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node15" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node18" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node24" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node35" href="iostream_8h.html" title="iostream class " alt="" coords="341,320,424,347"/> <area shape="rect" id="node37" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node42" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node39" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node47" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="357,245,448,272"/> </map> | |||
<area shape="rect" id="node3" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="315,96,383,123"/> <area shape="rect" id="node5" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="183,171,253,197"/> <area shape="rect" id="node34" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="256,245,347,272"/> <area shape="rect" id="node47" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="339,171,457,197"/> <area shape="rect" id="node52" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="482,171,600,197"/> <area shape="rect" id="node9" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="235,544,335,571"/> <area shape="rect" id="node13" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node17" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node20" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node26" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node37" href="iostream_8h.html" title="iostream class " alt="" coords="356,320,439,347"/> <area shape="rect" id="node39" href="istream_8h.html" title="istream class " alt="" coords="323,395,399,421"/> <area shape="rect" id="node44" href="ostream_8h.html" title="ostream class " alt="" coords="424,395,504,421"/> <area shape="rect" id="node41" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="336,469,387,496"/> <area shape="rect" id="node49" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="371,245,461,272"/> </map> | |||
</div> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -87,7 +87,7 @@ Classes</h2></td></tr> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -60,7 +60,7 @@ Include dependency graph for StdioStream.cpp:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_stdio_stream_8cpp__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_stdio_stream_8cpp" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_stdio_stream_8cpp" id="_arduino_2libraries_2_sd_fat_2_stdio_stream_8cpp"> | |||
<area shape="rect" id="node5" href="_stdio_stream_8h.html" title="StdioStream.h" alt="" coords="494,96,599,123"/> <area shape="rect" id="node10" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="327,171,395,197"/> <area shape="rect" id="node14" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="282,619,381,645"/> <area shape="rect" id="node12" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="391,395,461,421"/> <area shape="rect" id="node38" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="243,320,333,347"/> <area shape="rect" id="node51" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="114,245,232,272"/> <area shape="rect" id="node56" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="309,245,427,272"/> <area shape="rect" id="node17" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,917,109,944"/> <area shape="rect" id="node21" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="125,693,219,720"/> <area shape="rect" id="node24" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,768,307,795"/> <area shape="rect" id="node30" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,843,188,869"/> <area shape="rect" id="node41" href="iostream_8h.html" title="iostream class " alt="" coords="172,395,255,421"/> <area shape="rect" id="node43" href="istream_8h.html" title="istream class " alt="" coords="114,469,189,496"/> <area shape="rect" id="node48" href="ostream_8h.html" title="ostream class " alt="" coords="215,469,295,496"/> <area shape="rect" id="node45" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="229,544,280,571"/> <area shape="rect" id="node53" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="128,320,219,347"/> </map> | |||
<area shape="rect" id="node5" href="_stdio_stream_8h.html" title="StdioStream.h" alt="" coords="471,96,576,123"/> <area shape="rect" id="node10" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="309,171,376,197"/> <area shape="rect" id="node15" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="259,619,359,645"/> <area shape="rect" id="node12" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="381,245,451,272"/> <area shape="rect" id="node39" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="265,320,356,347"/> <area shape="rect" id="node52" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="43,245,161,272"/> <area shape="rect" id="node57" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="186,245,304,272"/> <area shape="rect" id="node18" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="209,917,313,944"/> <area shape="rect" id="node22" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="412,693,505,720"/> <area shape="rect" id="node25" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="428,768,511,795"/> <area shape="rect" id="node31" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="325,843,392,869"/> <area shape="rect" id="node42" href="iostream_8h.html" title="iostream class " alt="" coords="156,395,239,421"/> <area shape="rect" id="node44" href="istream_8h.html" title="istream class " alt="" coords="197,469,272,496"/> <area shape="rect" id="node49" href="ostream_8h.html" title="ostream class " alt="" coords="92,469,172,496"/> <area shape="rect" id="node46" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="209,544,260,571"/> <area shape="rect" id="node54" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="119,320,209,347"/> </map> | |||
</div> | |||
</div><table class="memberdecls"> | |||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="define-members"></a> | |||
@@ -100,7 +100,7 @@ Macros</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -64,7 +64,7 @@ Include dependency graph for StdioStream.h:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="_stdio_stream_8h__incl.png" border="0" usemap="#_arduino_2libraries_2_sd_fat_2_stdio_stream_8h" alt=""/></div> | |||
<map name="_arduino_2libraries_2_sd_fat_2_stdio_stream_8h" id="_arduino_2libraries_2_sd_fat_2_stdio_stream_8h"> | |||
<area shape="rect" id="node7" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="417,96,484,123"/> <area shape="rect" id="node11" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="319,544,419,571"/> <area shape="rect" id="node9" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="146,320,216,347"/> <area shape="rect" id="node35" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="400,245,491,272"/> <area shape="rect" id="node48" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="210,171,328,197"/> <area shape="rect" id="node53" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="353,171,471,197"/> <area shape="rect" id="node14" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node18" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node21" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node27" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node38" href="iostream_8h.html" title="iostream class " alt="" coords="297,320,380,347"/> <area shape="rect" id="node40" href="istream_8h.html" title="istream class " alt="" coords="227,395,303,421"/> <area shape="rect" id="node45" href="ostream_8h.html" title="ostream class " alt="" coords="328,395,408,421"/> <area shape="rect" id="node42" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="343,469,393,496"/> <area shape="rect" id="node50" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="264,245,355,272"/> </map> | |||
<area shape="rect" id="node7" href="_sd_fat_8h.html" title="SdFat class. " alt="" coords="331,96,399,123"/> <area shape="rect" id="node12" href="_sd_base_file_8h.html" title="SdBaseFile class. " alt="" coords="287,544,387,571"/> <area shape="rect" id="node9" href="_sd_file_8h.html" title="SdFile class. " alt="" coords="114,171,184,197"/> <area shape="rect" id="node36" href="_sd_stream_8h.html" title="fstream, ifstream, and ofstream classes " alt="" coords="303,245,393,272"/> <area shape="rect" id="node49" href="_arduino_stream_8h.html" title="ArduinoInStream and ArduinoOutStream classes. " alt="" coords="403,171,521,197"/> <area shape="rect" id="node54" href="_minimum_serial_8h.html" title="MinimumSerial.h" alt="" coords="209,171,327,197"/> <area shape="rect" id="node15" href="_sd_fat_config_8h.html" title="configuration definitions " alt="" coords="5,843,109,869"/> <area shape="rect" id="node19" href="_sd_volume_8h.html" title="SdVolume class. " alt="" coords="153,619,247,645"/> <area shape="rect" id="node22" href="_sd2_card_8h.html" title="Sd2Card class for V2 SD/SDHC cards. " alt="" coords="224,693,307,720"/> <area shape="rect" id="node28" href="_sd_spi_8h.html" title="SdSpi class for V2 SD/SDHC cards. " alt="" coords="121,768,188,795"/> <area shape="rect" id="node39" href="iostream_8h.html" title="iostream class " alt="" coords="381,320,464,347"/> <area shape="rect" id="node41" href="istream_8h.html" title="istream class " alt="" coords="446,395,521,421"/> <area shape="rect" id="node46" href="ostream_8h.html" title="ostream class " alt="" coords="341,395,421,421"/> <area shape="rect" id="node43" href="ios_8h.html" title="ios_base and ios classes " alt="" coords="356,469,407,496"/> <area shape="rect" id="node51" href="bufstream_8h.html" title="ibufstream and obufstream classes " alt="" coords="417,245,508,272"/> </map> | |||
</div> | |||
</div><div class="textblock"><div class="dynheader"> | |||
This graph shows which files directly or indirectly include this file:</div> | |||
@@ -198,7 +198,7 @@ Variables</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -67,9 +67,9 @@ | |||
<tr id="row_15_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classostream.html" target="_self">ostream</a></td><td class="desc">Output Stream </td></tr> | |||
<tr id="row_16_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structpgm.html" target="_self">pgm</a></td><td class="desc">Type for string in flash </td></tr> | |||
<tr id="row_17_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd2_card.html" target="_self">Sd2Card</a></td><td class="desc">Raw access to SD and SDHC flash memory cards </td></tr> | |||
<tr id="row_18_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd_base_file.html" target="_self">SdBaseFile</a></td><td class="desc">Base class for <a class="el" href="class_sd_file.html" title="SdBaseFile with Print. ">SdFile</a> with Print and C++ streams </td></tr> | |||
<tr id="row_18_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd_base_file.html" target="_self">SdBaseFile</a></td><td class="desc">Base class for <a class="el" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. ">SdFile</a> with Print and C++ streams </td></tr> | |||
<tr id="row_19_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd_fat.html" target="_self">SdFat</a></td><td class="desc">Integration class for the SdFat library </td></tr> | |||
<tr id="row_20_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd_file.html" target="_self">SdFile</a></td><td class="desc"><a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> with Print </td></tr> | |||
<tr id="row_20_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd_file.html" target="_self">SdFile</a></td><td class="desc"><a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> with Arduino Stream </td></tr> | |||
<tr id="row_21_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd_spi.html" target="_self">SdSpi</a></td><td class="desc">SPI class for access to SD and SDHC flash memory cards </td></tr> | |||
<tr id="row_22_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd_stream_base.html" target="_self">SdStreamBase</a></td><td class="desc">Base class for SD streams </td></tr> | |||
<tr id="row_23_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="class_sd_volume.html" target="_self">SdVolume</a></td><td class="desc">Access FAT16 and FAT32 volumes on SD and SDHC cards </td></tr> | |||
@@ -82,7 +82,7 @@ | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -85,7 +85,7 @@ Classes</h2></td></tr> | |||
</div></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:12 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -148,7 +148,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -2688,7 +2688,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -137,7 +137,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -2334,7 +2334,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:45 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -56,7 +56,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -153,7 +153,7 @@ Public Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -63,19 +63,20 @@ | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#abaf488d56f653efa8e3349bf803ce2b0">readCID</a>(cid_t *cid)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#a1b0c68df7f508f876d56fc1270536c87">readCSD</a>(csd_t *csd)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#a7d6e8a504f8525afd6d36a22ee5b8cc0">readData</a>(uint8_t *dst)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#a3259be9721e14a2edf8b549e4aeb2e40">readStart</a>(uint32_t blockNumber)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#ae133ad5a80c2652a964afd2320cc7c94">readStop</a>()</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#a6bcfd1bf665bf4ff88a46c07741fac43">sckDivisor</a>()</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#a17c8713ae610106567679a8685696375">Sd2Card</a>()</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#adcee026d613619414e2b6d3eca2c6537">type</a>() const </td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#ad5eecc3e1e68b9e5a43edfb8e4205469">writeBlock</a>(uint32_t blockNumber, const uint8_t *src)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#afb96025babf92878213dd691263d93ef">writeData</a>(const uint8_t *src)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#a1039df4f6620213a98b317d11da2014e">writeStart</a>(uint32_t blockNumber, uint32_t eraseCount)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#a7e1ec48b0a83d13415841da870290f64">writeStop</a>()</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#a9198517574578064a48f8f2b1874aae5">readOCR</a>(uint32_t *ocr)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#a3259be9721e14a2edf8b549e4aeb2e40">readStart</a>(uint32_t blockNumber)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#ae133ad5a80c2652a964afd2320cc7c94">readStop</a>()</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#a6bcfd1bf665bf4ff88a46c07741fac43">sckDivisor</a>()</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#a17c8713ae610106567679a8685696375">Sd2Card</a>()</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#adcee026d613619414e2b6d3eca2c6537">type</a>() const </td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#ad5eecc3e1e68b9e5a43edfb8e4205469">writeBlock</a>(uint32_t blockNumber, const uint8_t *src)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#afb96025babf92878213dd691263d93ef">writeData</a>(const uint8_t *src)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd2_card.html#a1039df4f6620213a98b317d11da2014e">writeStart</a>(uint32_t blockNumber, uint32_t eraseCount)</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd2_card.html#a7e1ec48b0a83d13415841da870290f64">writeStop</a>()</td><td class="entry"><a class="el" href="class_sd2_card.html">Sd2Card</a></td><td class="entry"></td></tr> | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -84,6 +84,8 @@ Public Member Functions</h2></td></tr> | |||
<tr class="separator:a1b0c68df7f508f876d56fc1270536c87"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a7d6e8a504f8525afd6d36a22ee5b8cc0"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd2_card.html#a7d6e8a504f8525afd6d36a22ee5b8cc0">readData</a> (uint8_t *dst)</td></tr> | |||
<tr class="separator:a7d6e8a504f8525afd6d36a22ee5b8cc0"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a9198517574578064a48f8f2b1874aae5"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd2_card.html#a9198517574578064a48f8f2b1874aae5">readOCR</a> (uint32_t *ocr)</td></tr> | |||
<tr class="separator:a9198517574578064a48f8f2b1874aae5"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a3259be9721e14a2edf8b549e4aeb2e40"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd2_card.html#a3259be9721e14a2edf8b549e4aeb2e40">readStart</a> (uint32_t blockNumber)</td></tr> | |||
<tr class="separator:a3259be9721e14a2edf8b549e4aeb2e40"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:ae133ad5a80c2652a964afd2320cc7c94"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd2_card.html#ae133ad5a80c2652a964afd2320cc7c94">readStop</a> ()</td></tr> | |||
@@ -496,6 +498,30 @@ Public Member Functions</h2></td></tr> | |||
</dl> | |||
<dl class="section return"><dt>Returns</dt><dd>The value one, true, is returned for success and the value zero, false, is returned for failure. </dd></dl> | |||
</div> | |||
</div> | |||
<a class="anchor" id="a9198517574578064a48f8f2b1874aae5"></a> | |||
<div class="memitem"> | |||
<div class="memproto"> | |||
<table class="memname"> | |||
<tr> | |||
<td class="memname">bool Sd2Card::readOCR </td> | |||
<td>(</td> | |||
<td class="paramtype">uint32_t * </td> | |||
<td class="paramname"><em>ocr</em></td><td>)</td> | |||
<td></td> | |||
</tr> | |||
</table> | |||
</div><div class="memdoc"> | |||
<p>Read OCR register.</p> | |||
<dl class="params"><dt>Parameters</dt><dd> | |||
<table class="params"> | |||
<tr><td class="paramdir">[out]</td><td class="paramname">ocr</td><td>Value of OCR register. </td></tr> | |||
</table> | |||
</dd> | |||
</dl> | |||
<dl class="section return"><dt>Returns</dt><dd>true for success else false. </dd></dl> | |||
</div> | |||
</div> | |||
<a class="anchor" id="a3259be9721e14a2edf8b549e4aeb2e40"></a> | |||
@@ -709,7 +735,7 @@ Public Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -124,7 +124,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -54,7 +54,7 @@ | |||
</div><!--header--> | |||
<div class="contents"> | |||
<p>Base class for <a class="el" href="class_sd_file.html" title="SdBaseFile with Print. ">SdFile</a> with Print and C++ streams. | |||
<p>Base class for <a class="el" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. ">SdFile</a> with Print and C++ streams. | |||
<a href="class_sd_base_file.html#details">More...</a></p> | |||
<p><code>#include <SdBaseFile.h></code></p> | |||
@@ -63,7 +63,7 @@ Inheritance diagram for SdBaseFile:</div> | |||
<div class="dyncontent"> | |||
<div class="center"><img src="class_sd_base_file__inherit__graph.png" border="0" usemap="#_sd_base_file_inherit__map" alt="Inheritance graph"/></div> | |||
<map name="_sd_base_file_inherit__map" id="_sd_base_file_inherit__map"> | |||
<area shape="rect" id="node3" href="class_sd_file.html" title="SdBaseFile with Print. " alt="" coords="5,80,64,107"/> <area shape="rect" id="node5" href="class_sd_stream_base.html" title="Base class for SD streams. " alt="" coords="89,80,199,107"/> <area shape="rect" id="node13" href="class_stdio_stream.html" title="StdioStream implements a minimal stdio stream. " alt="" coords="223,80,317,107"/> <area shape="rect" id="node7" href="classfstream.html" title="SD file input/output stream. " alt="" coords="21,155,85,181"/> <area shape="rect" id="node9" href="classifstream.html" title="SD file input stream. " alt="" coords="110,155,177,181"/> <area shape="rect" id="node11" href="classofstream.html" title="SD card output stream. " alt="" coords="203,155,275,181"/> </map> | |||
<area shape="rect" id="node3" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. " alt="" coords="5,80,64,107"/> <area shape="rect" id="node5" href="class_sd_stream_base.html" title="Base class for SD streams. " alt="" coords="89,80,199,107"/> <area shape="rect" id="node13" href="class_stdio_stream.html" title="StdioStream implements a minimal stdio stream. " alt="" coords="223,80,317,107"/> <area shape="rect" id="node7" href="classfstream.html" title="SD file input/output stream. " alt="" coords="21,155,85,181"/> <area shape="rect" id="node9" href="classifstream.html" title="SD file input stream. " alt="" coords="110,155,177,181"/> <area shape="rect" id="node11" href="classofstream.html" title="SD card output stream. " alt="" coords="203,155,275,181"/> </map> | |||
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div> | |||
<table class="memberdecls"> | |||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> | |||
@@ -221,7 +221,7 @@ Friends</h2></td></tr> | |||
<tr class="separator:ac838f1e6beb01ec57bd4b52e57df85e7"><td class="memSeparator" colspan="2"> </td></tr> | |||
</table> | |||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> | |||
<div class="textblock"><p>Base class for <a class="el" href="class_sd_file.html" title="SdBaseFile with Print. ">SdFile</a> with Print and C++ streams. </p> | |||
<div class="textblock"><p>Base class for <a class="el" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. ">SdFile</a> with Print and C++ streams. </p> | |||
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> | |||
<a class="anchor" id="a2806f9763006e9191678b4e33097b47d"></a> | |||
<div class="memitem"> | |||
@@ -1150,7 +1150,7 @@ Friends</h2></td></tr> | |||
<p>O_EXCL - If O_CREAT and O_EXCL are set, <a class="el" href="class_sd_base_file.html#a6ff5b48f672515ec20831583de74407f">open()</a> shall fail if the file exists.</p> | |||
<p>O_SYNC - Call <a class="el" href="class_sd_base_file.html#a292247972772be832f2c6ea166f4049a">sync()</a> after each write. This flag should not be used with write(uint8_t), write_P(PGM_P), writeln_P(PGM_P), or the Arduino Print class. These functions do character at a time writes so <a class="el" href="class_sd_base_file.html#a292247972772be832f2c6ea166f4049a">sync()</a> will be called after each byte.</p> | |||
<p>O_TRUNC - If the file exists and is a regular file, and the file is successfully opened and is not read only, its length shall be truncated to 0.</p> | |||
<p>WARNING: A given file must not be opened by more than one <a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> object of file corruption may occur.</p> | |||
<p>WARNING: A given file must not be opened by more than one <a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> object or file corruption may occur.</p> | |||
<dl class="section note"><dt>Note</dt><dd>Directory files must be opened read only. Write and truncation is not allowed for directory files.</dd></dl> | |||
<dl class="section return"><dt>Returns</dt><dd>The value one, true, is returned for success and the value zero, false, is returned for failure. Reasons for failure include this file is already open, <em>dirFile</em> is not a directory, <em>path</em> is invalid, the file does not exist or can't be opened in the access mode specified by oflag. </dd></dl> | |||
@@ -2329,7 +2329,7 @@ Modify and access timestamps may be overwritten if a date time callback function | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -85,7 +85,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -968,7 +968,7 @@ Static Public Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -50,7 +50,7 @@ | |||
<p>This is the complete list of members for <a class="el" href="class_sd_file.html">SdFile</a>, including all inherited members.</p> | |||
<table class="directory"> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ac4381fe633716069f2161d9e9fef5d16">available</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#abbb16ccfa24386ea381835778577626a">available</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#ac9898f5e004588267d8a31762ac47e60">clearWriteError</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a17f7e949aa0f80d89782d8e31f5edc15">close</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a272c68ba97eb5452ce903e6f8d2895a6">contiguousRange</a>(uint32_t *bgnBlock, uint32_t *endBlock)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
@@ -66,71 +66,72 @@ | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a41de4f35c622c1a5f5699400e8d05a87">fgets</a>(char *str, int16_t num, char *delim=0)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a32ac452756fdf80aae75fb1ab093a421">fileSize</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#adca5f8fce7851f9b7abc92cb73e49e35">firstCluster</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a2e84ccce858fd7e4d88e26b23d19a822">getFilename</a>(char *name)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ad1af089e5cf0a4c86e9b6bae1595f59b">getpos</a>(FatPos_t *pos)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#adfb128479bcdc998b09151b2c47e828f">getWriteError</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ad43ed061a1f77578d3c30a0f9b198497">isDir</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ab57b9744531ee0fcfa18bebde9fc50db">isFile</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a0fb6e697de39cdb777744981f58eaaa8">isOpen</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ad1fcdcb6c1cb66207d243584e6049095">isRoot</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a50023837ddbc57b10098d3a7cd5856f7">isSubDir</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ae94a6672e77325d91cf2ae7077f4c785">ls</a>(Print *pr, uint8_t flags=0, uint8_t indent=0)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a925b3badddc0f9472730a4ccd4ff7b67">ls</a>(uint8_t flags=0)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ad1de34e5dc5b3a1727208f949b5838e9">mkdir</a>(SdBaseFile *dir, const char *path, bool pFlag=true)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a6ff5b48f672515ec20831583de74407f">open</a>(SdBaseFile *dirFile, uint16_t index, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a4b88be0d893bcada9b203bdd33fff8e2">open</a>(SdBaseFile *dirFile, const char *path, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a63854cd9c57a9910779ca22112b436e0">open</a>(const char *path, uint8_t oflag=O_READ)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#aee4c736345e96aa5ddb7e5768ce88f51">openNext</a>(SdBaseFile *dirFile, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ac67ffdfb84263bcd425886c09a15e287">openRoot</a>(SdVolume *vol)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a996abee868ce928d04d9d0ad9305c915">peek</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#afe2fd8314f3a6c0e06ff178f730efe07">printCreateDateTime</a>(Print *pr)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a1f8b53aea38427dd483dfff4e9437d0c">printFatDate</a>(uint16_t fatDate)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a460b641eb358f2d6ac7a937944f9fba4">printFatDate</a>(Print *pr, uint16_t fatDate)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a9d7dcf89a8d3144731e59ea74a640d68">printFatTime</a>(uint16_t fatTime)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#af4d9cedda669bccdc8c8eeea73d04943">printFatTime</a>(Print *pr, uint16_t fatTime)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#aeb099d29e90975736f79fe54a31936b9">printField</a>(float value, char term, uint8_t prec=2)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a8fcc3db8e05121c739d8d43ee40fec72">printField</a>(int16_t value, char term)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a71050abe5bed8e44f48ae75627b54c63">printField</a>(uint16_t value, char term)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a770817e273c68fb830f9f029c39fc41c">printField</a>(int32_t value, char term)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a27146777c4d215cb5887edab4b4599b0">printField</a>(uint32_t value, char term)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a0591fd1f5abc8d02547451eacd08e804">printFileSize</a>(Print *pr)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a65604a3450e69799f2969b6a145647dc">printModifyDateTime</a>(Print *pr)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#add1a682e60aa3d8c030805122d5aa4e3">printName</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a942e26db2e764fccaeefea0fb371864d">printName</a>(Print *pr)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a145595e55db1629fa126ffa2628fe9eb">read</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#aa70609890c15df7c49d65b07d1161a3f">read</a>(void *buf, size_t nbyte)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ae5dd9c5f9764db71c90c5fcfb02b2c97">readDir</a>(dir_t *dir)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a4951400870f3f5ed8cc3f46b69388ed7">remove</a>(SdBaseFile *dirFile, const char *path)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a6e88ee210c9bd7556477c0e7ba4de1bb">remove</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ad6e9f07c62add23dfe0338bdd0bf2d40">rename</a>(SdBaseFile *dirFile, const char *newPath)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a7a5369b40eb15ad26c2e4af5d069c52c">rewind</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a7268834187e8216605963f8ae3cf1e6e">rmdir</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a4186ba79c83005971096966c0fd02d46">rmRfStar</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a2806f9763006e9191678b4e33097b47d">SdBaseFile</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a94d44fc448dc8a06867d490100a57781">SdBaseFile</a>(const char *path, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#afe0d4370c9edf39cf04a29362704ba5a">SdFile</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#acacaaf3201d9eb149183cf52f1f139a5">SdFile</a>(const char *name, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ab04ec7e129607973f6e3436f779b6501">seekCur</a>(int32_t offset)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a6f42e496b179dbdd2c09083cfad28613">seekEnd</a>(int32_t offset=0)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#afe6aeaf0ca7573ceb8bb335c802dab16">seekSet</a>(uint32_t pos)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a71170390855df02c88cbda6e727e9609">setpos</a>(FatPos_t *pos)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a292247972772be832f2c6ea166f4049a">sync</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#adf84a0487f3b45fc183756b9d17141cd">timestamp</a>(SdBaseFile *file)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ae55ad6000c44fc73e15934381b305dc4">timestamp</a>(uint8_t flag, uint16_t year, uint8_t month, uint8_t day, uint8_t hour, uint8_t minute, uint8_t second)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a9d1ad1abbd90089f731de81de1708c19">truncate</a>(uint32_t size)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a1555e6866abc9c867c5fff189a3a4317">type</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#acb021c2b7f68778d683d093775532a06">volume</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#a67267a4b63d03a16e099195935613006">write</a>(uint8_t b)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#a489af4bffef36ee4c22d422ba68b1b00">write</a>(const char *str)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#a7329a9bde292b3baad6d6dfbd72afe90">write</a>(const void *buf, size_t nbyte)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#a6f5bdc5ca583ca71356f99d22a5c3e97">write</a>(const uint8_t *buf, size_t size)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#adaa153fed109a0a03cfd545a259de4fe">write_P</a>(PGM_P str)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a47d4ba2177ffcd99c2387f9fac182d5b">writeError</a></td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#ad760d51410f36fd1e1b005a754624954">writeln_P</a>(PGM_P str)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#a3a2221cc545cddb5996df4e1905ab987">flush</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a2e84ccce858fd7e4d88e26b23d19a822">getFilename</a>(char *name)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ad1af089e5cf0a4c86e9b6bae1595f59b">getpos</a>(FatPos_t *pos)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#adfb128479bcdc998b09151b2c47e828f">getWriteError</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ad43ed061a1f77578d3c30a0f9b198497">isDir</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ab57b9744531ee0fcfa18bebde9fc50db">isFile</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a0fb6e697de39cdb777744981f58eaaa8">isOpen</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ad1fcdcb6c1cb66207d243584e6049095">isRoot</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a50023837ddbc57b10098d3a7cd5856f7">isSubDir</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ae94a6672e77325d91cf2ae7077f4c785">ls</a>(Print *pr, uint8_t flags=0, uint8_t indent=0)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a925b3badddc0f9472730a4ccd4ff7b67">ls</a>(uint8_t flags=0)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ad1de34e5dc5b3a1727208f949b5838e9">mkdir</a>(SdBaseFile *dir, const char *path, bool pFlag=true)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a6ff5b48f672515ec20831583de74407f">open</a>(SdBaseFile *dirFile, uint16_t index, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a4b88be0d893bcada9b203bdd33fff8e2">open</a>(SdBaseFile *dirFile, const char *path, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a63854cd9c57a9910779ca22112b436e0">open</a>(const char *path, uint8_t oflag=O_READ)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#aee4c736345e96aa5ddb7e5768ce88f51">openNext</a>(SdBaseFile *dirFile, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ac67ffdfb84263bcd425886c09a15e287">openRoot</a>(SdVolume *vol)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#ab8c0d875083803413f0160b3f75f70b7">peek</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#afe2fd8314f3a6c0e06ff178f730efe07">printCreateDateTime</a>(Print *pr)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a1f8b53aea38427dd483dfff4e9437d0c">printFatDate</a>(uint16_t fatDate)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a460b641eb358f2d6ac7a937944f9fba4">printFatDate</a>(Print *pr, uint16_t fatDate)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a9d7dcf89a8d3144731e59ea74a640d68">printFatTime</a>(uint16_t fatTime)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#af4d9cedda669bccdc8c8eeea73d04943">printFatTime</a>(Print *pr, uint16_t fatTime)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#aeb099d29e90975736f79fe54a31936b9">printField</a>(float value, char term, uint8_t prec=2)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a8fcc3db8e05121c739d8d43ee40fec72">printField</a>(int16_t value, char term)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a71050abe5bed8e44f48ae75627b54c63">printField</a>(uint16_t value, char term)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a770817e273c68fb830f9f029c39fc41c">printField</a>(int32_t value, char term)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a27146777c4d215cb5887edab4b4599b0">printField</a>(uint32_t value, char term)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a0591fd1f5abc8d02547451eacd08e804">printFileSize</a>(Print *pr)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a65604a3450e69799f2969b6a145647dc">printModifyDateTime</a>(Print *pr)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#add1a682e60aa3d8c030805122d5aa4e3">printName</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a942e26db2e764fccaeefea0fb371864d">printName</a>(Print *pr)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#a871cb5dc17625bc3534f28672bee6cfb">read</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#aa70609890c15df7c49d65b07d1161a3f">SdBaseFile::read</a>(void *buf, size_t nbyte)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#ae5dd9c5f9764db71c90c5fcfb02b2c97">readDir</a>(dir_t *dir)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a4951400870f3f5ed8cc3f46b69388ed7">remove</a>(SdBaseFile *dirFile, const char *path)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">static</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a6e88ee210c9bd7556477c0e7ba4de1bb">remove</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ad6e9f07c62add23dfe0338bdd0bf2d40">rename</a>(SdBaseFile *dirFile, const char *newPath)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a7a5369b40eb15ad26c2e4af5d069c52c">rewind</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a7268834187e8216605963f8ae3cf1e6e">rmdir</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a4186ba79c83005971096966c0fd02d46">rmRfStar</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a2806f9763006e9191678b4e33097b47d">SdBaseFile</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a94d44fc448dc8a06867d490100a57781">SdBaseFile</a>(const char *path, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#afe0d4370c9edf39cf04a29362704ba5a">SdFile</a>()</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#acacaaf3201d9eb149183cf52f1f139a5">SdFile</a>(const char *name, uint8_t oflag)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ab04ec7e129607973f6e3436f779b6501">seekCur</a>(int32_t offset)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a6f42e496b179dbdd2c09083cfad28613">seekEnd</a>(int32_t offset=0)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#afe6aeaf0ca7573ceb8bb335c802dab16">seekSet</a>(uint32_t pos)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a71170390855df02c88cbda6e727e9609">setpos</a>(FatPos_t *pos)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a292247972772be832f2c6ea166f4049a">sync</a>()</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#adf84a0487f3b45fc183756b9d17141cd">timestamp</a>(SdBaseFile *file)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#ae55ad6000c44fc73e15934381b305dc4">timestamp</a>(uint8_t flag, uint16_t year, uint8_t month, uint8_t day, uint8_t hour, uint8_t minute, uint8_t second)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a9d1ad1abbd90089f731de81de1708c19">truncate</a>(uint32_t size)</td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_base_file.html#a1555e6866abc9c867c5fff189a3a4317">type</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#acb021c2b7f68778d683d093775532a06">volume</a>() const </td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#a67267a4b63d03a16e099195935613006">write</a>(uint8_t b)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#a489af4bffef36ee4c22d422ba68b1b00">write</a>(const char *str)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#a7329a9bde292b3baad6d6dfbd72afe90">write</a>(const void *buf, size_t nbyte)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_file.html#a6f5bdc5ca583ca71356f99d22a5c3e97">write</a>(const uint8_t *buf, size_t size)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#adaa153fed109a0a03cfd545a259de4fe">write_P</a>(PGM_P str)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
<tr class="even"><td class="entry"><a class="el" href="class_sd_base_file.html#a47d4ba2177ffcd99c2387f9fac182d5b">writeError</a></td><td class="entry"><a class="el" href="class_sd_base_file.html">SdBaseFile</a></td><td class="entry"></td></tr> | |||
<tr><td class="entry"><a class="el" href="class_sd_file.html#ad760d51410f36fd1e1b005a754624954">writeln_P</a>(PGM_P str)</td><td class="entry"><a class="el" href="class_sd_file.html">SdFile</a></td><td class="entry"></td></tr> | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -53,7 +53,7 @@ | |||
</div><!--header--> | |||
<div class="contents"> | |||
<p><a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> with Print. | |||
<p><a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> with Arduino Stream. | |||
<a href="class_sd_file.html#details">More...</a></p> | |||
<p><code>#include <SdFile.h></code></p> | |||
@@ -74,8 +74,8 @@ Collaboration diagram for SdFile:</div> | |||
<table class="memberdecls"> | |||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> | |||
Public Member Functions</h2></td></tr> | |||
<tr class="memitem:ac4381fe633716069f2161d9e9fef5d16"><td class="memItemLeft" align="right" valign="top">uint32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#ac4381fe633716069f2161d9e9fef5d16">available</a> ()</td></tr> | |||
<tr class="separator:ac4381fe633716069f2161d9e9fef5d16"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:abbb16ccfa24386ea381835778577626a"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_file.html#abbb16ccfa24386ea381835778577626a">available</a> ()</td></tr> | |||
<tr class="separator:abbb16ccfa24386ea381835778577626a"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:ac9898f5e004588267d8a31762ac47e60"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_file.html#ac9898f5e004588267d8a31762ac47e60">clearWriteError</a> ()</td></tr> | |||
<tr class="separator:ac9898f5e004588267d8a31762ac47e60"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a17f7e949aa0f80d89782d8e31f5edc15"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#a17f7e949aa0f80d89782d8e31f5edc15">close</a> ()</td></tr> | |||
@@ -98,6 +98,8 @@ Public Member Functions</h2></td></tr> | |||
<tr class="separator:a32ac452756fdf80aae75fb1ab093a421"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:adca5f8fce7851f9b7abc92cb73e49e35"><td class="memItemLeft" align="right" valign="top">uint32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#adca5f8fce7851f9b7abc92cb73e49e35">firstCluster</a> () const </td></tr> | |||
<tr class="separator:adca5f8fce7851f9b7abc92cb73e49e35"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a3a2221cc545cddb5996df4e1905ab987"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_file.html#a3a2221cc545cddb5996df4e1905ab987">flush</a> ()</td></tr> | |||
<tr class="separator:a3a2221cc545cddb5996df4e1905ab987"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a2e84ccce858fd7e4d88e26b23d19a822"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#a2e84ccce858fd7e4d88e26b23d19a822">getFilename</a> (char *name)</td></tr> | |||
<tr class="separator:a2e84ccce858fd7e4d88e26b23d19a822"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:ad1af089e5cf0a4c86e9b6bae1595f59b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#ad1af089e5cf0a4c86e9b6bae1595f59b">getpos</a> (<a class="el" href="struct_fat_pos__t.html">FatPos_t</a> *pos)</td></tr> | |||
@@ -130,8 +132,8 @@ Public Member Functions</h2></td></tr> | |||
<tr class="separator:aee4c736345e96aa5ddb7e5768ce88f51"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:ac67ffdfb84263bcd425886c09a15e287"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#ac67ffdfb84263bcd425886c09a15e287">openRoot</a> (<a class="el" href="class_sd_volume.html">SdVolume</a> *vol)</td></tr> | |||
<tr class="separator:ac67ffdfb84263bcd425886c09a15e287"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a996abee868ce928d04d9d0ad9305c915"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#a996abee868ce928d04d9d0ad9305c915">peek</a> ()</td></tr> | |||
<tr class="separator:a996abee868ce928d04d9d0ad9305c915"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:ab8c0d875083803413f0160b3f75f70b7"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_file.html#ab8c0d875083803413f0160b3f75f70b7">peek</a> ()</td></tr> | |||
<tr class="separator:ab8c0d875083803413f0160b3f75f70b7"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:afe2fd8314f3a6c0e06ff178f730efe07"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#afe2fd8314f3a6c0e06ff178f730efe07">printCreateDateTime</a> (Print *pr)</td></tr> | |||
<tr class="separator:afe2fd8314f3a6c0e06ff178f730efe07"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:aeb099d29e90975736f79fe54a31936b9"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#aeb099d29e90975736f79fe54a31936b9">printField</a> (float value, char term, uint8_t prec=2)</td></tr> | |||
@@ -152,8 +154,8 @@ Public Member Functions</h2></td></tr> | |||
<tr class="separator:add1a682e60aa3d8c030805122d5aa4e3"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a942e26db2e764fccaeefea0fb371864d"><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#a942e26db2e764fccaeefea0fb371864d">printName</a> (Print *pr)</td></tr> | |||
<tr class="separator:a942e26db2e764fccaeefea0fb371864d"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a145595e55db1629fa126ffa2628fe9eb"><td class="memItemLeft" align="right" valign="top">int16_t </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#a145595e55db1629fa126ffa2628fe9eb">read</a> ()</td></tr> | |||
<tr class="separator:a145595e55db1629fa126ffa2628fe9eb"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:a871cb5dc17625bc3534f28672bee6cfb"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_file.html#a871cb5dc17625bc3534f28672bee6cfb">read</a> ()</td></tr> | |||
<tr class="separator:a871cb5dc17625bc3534f28672bee6cfb"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:aa70609890c15df7c49d65b07d1161a3f"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#aa70609890c15df7c49d65b07d1161a3f">read</a> (void *buf, size_t nbyte)</td></tr> | |||
<tr class="separator:aa70609890c15df7c49d65b07d1161a3f"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:ae5dd9c5f9764db71c90c5fcfb02b2c97"><td class="memItemLeft" align="right" valign="top">int8_t </td><td class="memItemRight" valign="bottom"><a class="el" href="class_sd_base_file.html#ae5dd9c5f9764db71c90c5fcfb02b2c97">readDir</a> (dir_t *dir)</td></tr> | |||
@@ -232,7 +234,7 @@ Public Attributes</h2></td></tr> | |||
<tr class="separator:a47d4ba2177ffcd99c2387f9fac182d5b"><td class="memSeparator" colspan="2"> </td></tr> | |||
</table> | |||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> | |||
<div class="textblock"><p><a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> with Print. </p> | |||
<div class="textblock"><p><a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> with Arduino Stream. </p> | |||
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> | |||
<a class="anchor" id="afe0d4370c9edf39cf04a29362704ba5a"></a> | |||
<div class="memitem"> | |||
@@ -292,7 +294,7 @@ Public Attributes</h2></td></tr> | |||
</div> | |||
</div> | |||
<h2 class="groupheader">Member Function Documentation</h2> | |||
<a class="anchor" id="ac4381fe633716069f2161d9e9fef5d16"></a> | |||
<a class="anchor" id="abbb16ccfa24386ea381835778577626a"></a> | |||
<div class="memitem"> | |||
<div class="memproto"> | |||
<table class="mlabels"> | |||
@@ -300,7 +302,7 @@ Public Attributes</h2></td></tr> | |||
<td class="mlabels-left"> | |||
<table class="memname"> | |||
<tr> | |||
<td class="memname">uint32_t SdBaseFile::available </td> | |||
<td class="memname">int SdFile::available </td> | |||
<td>(</td> | |||
<td class="paramname"></td><td>)</td> | |||
<td></td> | |||
@@ -308,11 +310,11 @@ Public Attributes</h2></td></tr> | |||
</table> | |||
</td> | |||
<td class="mlabels-right"> | |||
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">inherited</span></span> </td> | |||
<span class="mlabels"><span class="mlabel">inline</span></span> </td> | |||
</tr> | |||
</table> | |||
</div><div class="memdoc"> | |||
<dl class="section return"><dt>Returns</dt><dd>number of bytes available from yhe current position to EOF </dd></dl> | |||
<dl class="section return"><dt>Returns</dt><dd>number of bytes available from the current position to EOF or INT_MAX if more than INT_MAX bytes are available. </dd></dl> | |||
</div> | |||
</div> | |||
@@ -806,6 +808,30 @@ Public Attributes</h2></td></tr> | |||
</div><div class="memdoc"> | |||
<dl class="section return"><dt>Returns</dt><dd>The first cluster number for a file or directory. </dd></dl> | |||
</div> | |||
</div> | |||
<a class="anchor" id="a3a2221cc545cddb5996df4e1905ab987"></a> | |||
<div class="memitem"> | |||
<div class="memproto"> | |||
<table class="mlabels"> | |||
<tr> | |||
<td class="mlabels-left"> | |||
<table class="memname"> | |||
<tr> | |||
<td class="memname">void SdFile::flush </td> | |||
<td>(</td> | |||
<td class="paramname"></td><td>)</td> | |||
<td></td> | |||
</tr> | |||
</table> | |||
</td> | |||
<td class="mlabels-right"> | |||
<span class="mlabels"><span class="mlabel">inline</span></span> </td> | |||
</tr> | |||
</table> | |||
</div><div class="memdoc"> | |||
<p>Ensure that any bytes written to the file are saved to the SD card. </p> | |||
</div> | |||
</div> | |||
<a class="anchor" id="a2e84ccce858fd7e4d88e26b23d19a822"></a> | |||
@@ -1264,7 +1290,7 @@ Public Attributes</h2></td></tr> | |||
<p>O_EXCL - If O_CREAT and O_EXCL are set, <a class="el" href="class_sd_base_file.html#a6ff5b48f672515ec20831583de74407f">open()</a> shall fail if the file exists.</p> | |||
<p>O_SYNC - Call <a class="el" href="class_sd_base_file.html#a292247972772be832f2c6ea166f4049a">sync()</a> after each write. This flag should not be used with write(uint8_t), write_P(PGM_P), writeln_P(PGM_P), or the Arduino Print class. These functions do character at a time writes so <a class="el" href="class_sd_base_file.html#a292247972772be832f2c6ea166f4049a">sync()</a> will be called after each byte.</p> | |||
<p>O_TRUNC - If the file exists and is a regular file, and the file is successfully opened and is not read only, its length shall be truncated to 0.</p> | |||
<p>WARNING: A given file must not be opened by more than one <a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> object of file corruption may occur.</p> | |||
<p>WARNING: A given file must not be opened by more than one <a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> object or file corruption may occur.</p> | |||
<dl class="section note"><dt>Note</dt><dd>Directory files must be opened read only. Write and truncation is not allowed for directory files.</dd></dl> | |||
<dl class="section return"><dt>Returns</dt><dd>The value one, true, is returned for success and the value zero, false, is returned for failure. Reasons for failure include this file is already open, <em>dirFile</em> is not a directory, <em>path</em> is invalid, the file does not exist or can't be opened in the access mode specified by oflag. </dd></dl> | |||
@@ -1389,7 +1415,7 @@ Public Attributes</h2></td></tr> | |||
</div> | |||
</div> | |||
<a class="anchor" id="a996abee868ce928d04d9d0ad9305c915"></a> | |||
<a class="anchor" id="ab8c0d875083803413f0160b3f75f70b7"></a> | |||
<div class="memitem"> | |||
<div class="memproto"> | |||
<table class="mlabels"> | |||
@@ -1397,7 +1423,7 @@ Public Attributes</h2></td></tr> | |||
<td class="mlabels-left"> | |||
<table class="memname"> | |||
<tr> | |||
<td class="memname">int SdBaseFile::peek </td> | |||
<td class="memname">int SdFile::peek </td> | |||
<td>(</td> | |||
<td class="paramname"></td><td>)</td> | |||
<td></td> | |||
@@ -1405,7 +1431,7 @@ Public Attributes</h2></td></tr> | |||
</table> | |||
</td> | |||
<td class="mlabels-right"> | |||
<span class="mlabels"><span class="mlabel">inherited</span></span> </td> | |||
<span class="mlabels"><span class="mlabel">inline</span></span> </td> | |||
</tr> | |||
</table> | |||
</div><div class="memdoc"> | |||
@@ -1931,7 +1957,7 @@ Public Attributes</h2></td></tr> | |||
</div> | |||
</div> | |||
<a class="anchor" id="a145595e55db1629fa126ffa2628fe9eb"></a> | |||
<a class="anchor" id="a871cb5dc17625bc3534f28672bee6cfb"></a> | |||
<div class="memitem"> | |||
<div class="memproto"> | |||
<table class="mlabels"> | |||
@@ -1939,7 +1965,7 @@ Public Attributes</h2></td></tr> | |||
<td class="mlabels-left"> | |||
<table class="memname"> | |||
<tr> | |||
<td class="memname">int16_t SdBaseFile::read </td> | |||
<td class="memname">int SdFile::read </td> | |||
<td>(</td> | |||
<td class="paramname"></td><td>)</td> | |||
<td></td> | |||
@@ -1947,12 +1973,12 @@ Public Attributes</h2></td></tr> | |||
</table> | |||
</td> | |||
<td class="mlabels-right"> | |||
<span class="mlabels"><span class="mlabel">inherited</span></span> </td> | |||
<span class="mlabels"><span class="mlabel">inline</span></span> </td> | |||
</tr> | |||
</table> | |||
</div><div class="memdoc"> | |||
<p>Read the next byte from a file.</p> | |||
<dl class="section return"><dt>Returns</dt><dd>For success read returns the next byte in the file as an int. If an error occurs or end of file is reached -1 is returned. </dd></dl> | |||
<dl class="section return"><dt>Returns</dt><dd>For success return the next byte in the file as an int. If an error occurs or end of file is reached return -1. </dd></dl> | |||
</div> | |||
</div> | |||
@@ -2773,7 +2799,7 @@ Modify and access timestamps may be overwritten if a date time callback function | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -59,7 +59,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -228,7 +228,7 @@ Public Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -180,7 +180,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -1736,7 +1736,7 @@ Protected Attributes</h2></td></tr> | |||
<p>O_EXCL - If O_CREAT and O_EXCL are set, <a class="el" href="class_sd_base_file.html#a6ff5b48f672515ec20831583de74407f">open()</a> shall fail if the file exists.</p> | |||
<p>O_SYNC - Call <a class="el" href="class_sd_base_file.html#a292247972772be832f2c6ea166f4049a">sync()</a> after each write. This flag should not be used with write(uint8_t), write_P(PGM_P), writeln_P(PGM_P), or the Arduino Print class. These functions do character at a time writes so <a class="el" href="class_sd_base_file.html#a292247972772be832f2c6ea166f4049a">sync()</a> will be called after each byte.</p> | |||
<p>O_TRUNC - If the file exists and is a regular file, and the file is successfully opened and is not read only, its length shall be truncated to 0.</p> | |||
<p>WARNING: A given file must not be opened by more than one <a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> object of file corruption may occur.</p> | |||
<p>WARNING: A given file must not be opened by more than one <a class="el" href="class_sd_base_file.html" title="Base class for SdFile with Print and C++ streams. ">SdBaseFile</a> object or file corruption may occur.</p> | |||
<dl class="section note"><dt>Note</dt><dd>Directory files must be opened read only. Write and truncation is not allowed for directory files.</dd></dl> | |||
<dl class="section return"><dt>Returns</dt><dd>The value one, true, is returned for success and the value zero, false, is returned for failure. Reasons for failure include this file is already open, <em>dirFile</em> is not a directory, <em>path</em> is invalid, the file does not exist or can't be opened in the access mode specified by oflag. </dd></dl> | |||
@@ -3950,7 +3950,7 @@ Modify and access timestamps may be overwritten if a date time callback function | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -71,7 +71,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -572,7 +572,7 @@ Friends</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -165,7 +165,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -1744,7 +1744,7 @@ template<typename T > </div> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -75,7 +75,7 @@ | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -240,7 +240,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -3662,7 +3662,7 @@ Private Attributes</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -144,7 +144,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -2591,7 +2591,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -214,7 +214,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -2809,7 +2809,7 @@ Private Attributes</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -110,7 +110,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -1480,7 +1480,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -100,7 +100,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -1166,7 +1166,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -167,7 +167,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -3345,7 +3345,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -141,7 +141,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -2469,7 +2469,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -141,7 +141,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -2467,7 +2467,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -209,7 +209,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -2611,7 +2611,7 @@ Private Attributes</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -136,7 +136,7 @@ | |||
</table></div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -2327,7 +2327,7 @@ Protected Member Functions</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -112,7 +112,7 @@ Files</h2></td></tr> | |||
<tr class="memitem:_sd_file_8cpp"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="_sd_file_8cpp.html">SdFile.cpp</a></td></tr> | |||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:_sd_file_8h"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="_sd_file_8h.html">SdFile.h</a></td></tr> | |||
<tr class="memdesc:_sd_file_8h"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="class_sd_file.html" title="SdBaseFile with Print. ">SdFile</a> class. <br/></td></tr> | |||
<tr class="memdesc:_sd_file_8h"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. ">SdFile</a> class. <br/></td></tr> | |||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> | |||
<tr class="memitem:_sd_spi_8h"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="_sd_spi_8h.html">SdSpi.h</a></td></tr> | |||
<tr class="memdesc:_sd_spi_8h"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="class_sd_spi.html" title="SPI class for access to SD and SDHC flash memory cards. ">SdSpi</a> class for V2 SD/SDHC cards. <br/></td></tr> | |||
@@ -145,7 +145,7 @@ Files</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -60,7 +60,7 @@ Directories</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -60,7 +60,7 @@ Directories</h2></td></tr> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -74,7 +74,7 @@ | |||
<tr id="row_0_0_0_20_"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="_sd_fat_util_8cpp.html" target="_self">SdFatUtil.cpp</a></td><td class="desc"></td></tr> | |||
<tr id="row_0_0_0_21_" class="even"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="_sd_fat_util_8h.html" target="_self">SdFatUtil.h</a></td><td class="desc">Useful utility functions </td></tr> | |||
<tr id="row_0_0_0_22_"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="_sd_file_8cpp.html" target="_self">SdFile.cpp</a></td><td class="desc"></td></tr> | |||
<tr id="row_0_0_0_23_" class="even"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="_sd_file_8h.html" target="_self">SdFile.h</a></td><td class="desc"><a class="el" href="class_sd_file.html" title="SdBaseFile with Print. ">SdFile</a> class </td></tr> | |||
<tr id="row_0_0_0_23_" class="even"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="_sd_file_8h.html" target="_self">SdFile.h</a></td><td class="desc"><a class="el" href="class_sd_file.html" title="SdBaseFile with Arduino Stream. ">SdFile</a> class </td></tr> | |||
<tr id="row_0_0_0_24_"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="_sd_spi_8h.html" target="_self">SdSpi.h</a></td><td class="desc"><a class="el" href="class_sd_spi.html" title="SPI class for access to SD and SDHC flash memory cards. ">SdSpi</a> class for V2 SD/SDHC cards </td></tr> | |||
<tr id="row_0_0_0_25_" class="even"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="_sd_spi_arduino_8cpp.html" target="_self">SdSpiArduino.cpp</a></td><td class="desc"></td></tr> | |||
<tr id="row_0_0_0_26_"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="_sd_spi_a_v_r_8cpp.html" target="_self">SdSpiAVR.cpp</a></td><td class="desc"></td></tr> | |||
@@ -92,7 +92,7 @@ | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -97,12 +97,13 @@ | |||
</li> | |||
<li>available() | |||
: <a class="el" href="class_sd_base_file.html#ac4381fe633716069f2161d9e9fef5d16">SdBaseFile</a> | |||
, <a class="el" href="class_sd_file.html#abbb16ccfa24386ea381835778577626a">SdFile</a> | |||
</li> | |||
</ul> | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -117,7 +117,7 @@ | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |
@@ -147,7 +147,7 @@ | |||
</div><!-- contents --> | |||
<!-- start footer part --> | |||
<hr class="footer"/><address class="footer"><small> | |||
Generated on Fri Sep 5 2014 13:07:46 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
Generated on Fri Oct 24 2014 05:45:13 for SdFat by  <a href="http://www.doxygen.org/index.html"> | |||
<img class="footer" src="doxygen.png" alt="doxygen"/> | |||
</a> 1.8.6 | |||
</small></address> |