| 1 |
606 |
jeremybenn |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
| 2 |
|
|
<html lang="en">
|
| 3 |
|
|
<head>
|
| 4 |
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 5 |
|
|
<meta http-equiv="Content-Style-Type" content="text/css">
|
| 6 |
|
|
<link rel="up" title="FatFs" href="../00index_e.html">
|
| 7 |
|
|
<link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">
|
| 8 |
|
|
<title>FatFs - f_read</title>
|
| 9 |
|
|
</head>
|
| 10 |
|
|
|
| 11 |
|
|
<body>
|
| 12 |
|
|
|
| 13 |
|
|
<div class="para">
|
| 14 |
|
|
<h2>f_read</h2>
|
| 15 |
|
|
<p>The f_read function reads data from a file.</p>
|
| 16 |
|
|
<pre>
|
| 17 |
|
|
FRESULT f_read (
|
| 18 |
|
|
FIL* <em>FileObject</em>, /* Pointer to the file object structure */
|
| 19 |
|
|
void* <em>Buffer</em>, /* Pointer to the buffer to store read data */
|
| 20 |
|
|
UINT <em>ByteToRead</em>, /* Number of bytes to read */
|
| 21 |
|
|
UINT* <em>ByteRead</em> /* Pointer to the variable to return number of bytes read */
|
| 22 |
|
|
);
|
| 23 |
|
|
</pre>
|
| 24 |
|
|
</div>
|
| 25 |
|
|
|
| 26 |
|
|
<div class="para">
|
| 27 |
|
|
<h4>Parameters</h4>
|
| 28 |
|
|
<dl class="par">
|
| 29 |
|
|
<dt>FileObject</dt>
|
| 30 |
|
|
<dd>Pointer to the open file object.</dd>
|
| 31 |
|
|
<dt>Buffer</dt>
|
| 32 |
|
|
<dd>Pointer to the buffer to store read data</dd>
|
| 33 |
|
|
<dt>ByteToRead</dt>
|
| 34 |
|
|
<dd>Number of bytes to read in range of UINT.</dd>
|
| 35 |
|
|
<dt>ByteRead</dt>
|
| 36 |
|
|
<dd>Pointer to the UINT variable to return number of bytes read. The value is always valid after the function call regardless of the result.</dd>
|
| 37 |
|
|
</dl>
|
| 38 |
|
|
</div>
|
| 39 |
|
|
|
| 40 |
|
|
|
| 41 |
|
|
<div class="para">
|
| 42 |
|
|
<h4>Return Values</h4>
|
| 43 |
|
|
<dl class="ret">
|
| 44 |
|
|
<dt>FR_OK (0)</dt>
|
| 45 |
|
|
<dd>The function succeeded.</dd>
|
| 46 |
|
|
<dt>FR_DENIED</dt>
|
| 47 |
|
|
<dd>The function denied due to the file has been opened in non-read mode.</dd>
|
| 48 |
|
|
<dt>FR_DISK_ERR</dt>
|
| 49 |
|
|
<dd>The function failed due to an error in the disk function.</dd>
|
| 50 |
|
|
<dt>FR_INT_ERR</dt>
|
| 51 |
|
|
<dd>The function failed due to a wrong FAT structure or an internal error.</dd>
|
| 52 |
|
|
<dt>FR_NOT_READY</dt>
|
| 53 |
|
|
<dd>The disk drive cannot work due to no medium in the drive or any other reason.</dd>
|
| 54 |
|
|
<dt>FR_INVALID_OBJECT</dt>
|
| 55 |
|
|
<dd>The file object is invalid.</dd>
|
| 56 |
|
|
</dl>
|
| 57 |
|
|
</div>
|
| 58 |
|
|
|
| 59 |
|
|
|
| 60 |
|
|
<div class="para">
|
| 61 |
|
|
<h4>Description</h4>
|
| 62 |
|
|
<p>The file pointer of the file object increases in number of bytes read. After the function succeeded, <tt>*ByteRead</tt> should be checked to detect the end of file. In case of <tt>*ByteRead < ByteToRead</tt>, it means the R/W pointer reached end of the file during read operation.</p>
|
| 63 |
|
|
</div>
|
| 64 |
|
|
|
| 65 |
|
|
|
| 66 |
|
|
<div class="para">
|
| 67 |
|
|
<h4>QuickInfo</h4>
|
| 68 |
|
|
<p>Always available.</p>
|
| 69 |
|
|
</div>
|
| 70 |
|
|
|
| 71 |
|
|
|
| 72 |
|
|
<div class="para">
|
| 73 |
|
|
<h4>See Also</h4>
|
| 74 |
|
|
<p><tt><a href="open.html">f_open</a>, <a href="gets.html">fgets</a>, <a href="write.html">f_write</a>, <a href="close.html">f_close</a>, <a href="sfile.html">FIL</a></tt></p>
|
| 75 |
|
|
</div>
|
| 76 |
|
|
|
| 77 |
|
|
<p class="foot"><a href="../00index_e.html">Return</a></p>
|
| 78 |
|
|
</body>
|
| 79 |
|
|
</html>
|