Add FatFs module by ChaN.
[bertos.git] / bertos / fs / fatfs / doc / en / write.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\r
2 <html lang="en">\r
3 <head>\r
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r
5 <meta http-equiv="Content-Style-Type" content="text/css">\r
6 <link rel="up" title="FatFs" href="../00index_e.html">\r
7 <link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">\r
8 <title>FatFs - f_write</title>\r
9 </head>\r
10 \r
11 <body>\r
12 \r
13 <div class="para">\r
14 <h2>f_write</h2>\r
15 <p>The f_write writes data to a file.</p>\r
16 <pre>\r
17 FRESULT f_write (\r
18   FIL* <em>FileObject</em>,     /* Pointer to the file object structure */\r
19   const void* <em>Buffer</em>,  /* Pointer to the data to be written */\r
20   UINT <em>ByteToWrite</em>,    /* Number of bytes to write */\r
21   UINT* <em>ByteWritten</em>    /* Pointer to the variable to return number of bytes written */\r
22 );\r
23 </pre>\r
24 </div>\r
25 \r
26 <div class="para">\r
27 <h4>Parameters</h4>\r
28 <dl class="par">\r
29 <dt>FileObject</dt>\r
30 <dd>Pointer to the open file object structure.</dd>\r
31 <dt>Buffer</dt>\r
32 <dd>Pointer to the data to be written.</dd>\r
33 <dt>ByteToWrite</dt>\r
34 <dd>Specifies number of bytes to write in range of UINT.</dd>\r
35 <dt>ByteWritten</dt>\r
36 <dd>Pointer to the UINT variable to return number of bytes written.</dd>\r
37 </dl>\r
38 </div>\r
39 \r
40 \r
41 <div class="para">\r
42 <h4>Return Values</h4>\r
43 <dl class="ret">\r
44 <dt>FR_OK (0)</dt>\r
45 <dd>The function succeeded.</dd>\r
46 <dt>FR_DENIED</dt>\r
47 <dd>The function denied due to the file has been opened in non-write mode.</dd>\r
48 <dt>FR_DISK_ERR</dt>\r
49 <dd>The function failed due to an error in the disk function.</dd>\r
50 <dt>FR_INT_ERR</dt>\r
51 <dd>The function failed due to a wrong FAT structure or an internal error.</dd>\r
52 <dt>FR_NOT_READY</dt>\r
53 <dd>The disk drive cannot work due to no medium in the drive or any other reason.</dd>\r
54 <dt>FR_INVALID_OBJECT</dt>\r
55 <dd>The file object is invalid.</dd>\r
56 </dl>\r
57 </div>\r
58 \r
59 \r
60 <div class="para">\r
61 <h4>Description</h4>\r
62 <p>The read/write pointer in the file object is increased in number of bytes written. After the function succeeded, <tt>*ByteWritten</tt> should be checked to detect disk full. In case of <tt>*ByteWritten &lt; ByteToWrite</tt>, it means the disk got full during write operation.</p>\r
63 <p>This function is not available in read-only configuration.</p>\r
64 </div>\r
65 \r
66 \r
67 <div class="para">\r
68 <h4>References</h4>\r
69 <p><tt><a href="open.html">f_open</a>, <a href="read.html">f_read</a>, <a href="putc.html">fputc</a>, <a href="puts.html">fputs</a>, <a href="printf.html">fprintf</a>, <a href="close.html">f_close</a>, <a href="sfile.html">FIL</a></tt></p>\r
70 </div>\r
71 \r
72 <p class="foot"><a href="../00index_e.html">Return</a></p>\r
73 </body>\r
74 </html>\r