FreeRTOS
[armadillo_firmware.git] / FreeRTOS / Common / FileSystem / FatFs-0.7e / doc / en / sync.html
blob21b9953e304a267247f3a797e8a72b4012cb471c
1 <!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_sync</title>
9 </head>
11 <body>
13 <div class="para">
14 <h2>f_sync</h2>
15 <p>The f_sync function flushes the cached information of a writing file.</p>
16 <pre>
17 FRESULT f_sync (
18 FIL* <em>FileObject</em> /* Pointer to the file object */
20 </pre>
21 </div>
23 <div class="para">
24 <h4>Parameter</h4>
25 <dl class="par">
26 <dt>FileObject</dt>
27 <dd>Pointer to the open file object to be flushed.</dd>
28 </dl>
29 </div>
32 <div class="para">
33 <h4>Return Values</h4>
34 <dl class="ret">
35 <dt>FR_OK (0)</dt>
36 <dd>The function succeeded.</dd>
37 <dt>FR_DISK_ERR</dt>
38 <dd>The function failed due to an error in the disk function.</dd>
39 <dt>FR_INT_ERR</dt>
40 <dd>The function failed due to a wrong FAT structure or an internal error.</dd>
41 <dt>FR_NOT_READY</dt>
42 <dd>The disk drive cannot work due to no medium in the drive or any other reason.</dd>
43 <dt>FR_INVALID_OBJECT</dt>
44 <dd>The file object is invalid.</dd>
45 </dl>
46 </div>
49 <div class="para">
50 <h4>Description</h4>
51 <p>The f_sync function performs the same process as f_close function but the file is left opened and can continue read/write/seek operations to the file. This is suitable for the applications that open files for a long time in write mode, such as data logger. Performing f_sync of periodic or immediataly after f_write can minimize the risk of data loss due to a sudden blackout or an unintentional disk removal. However f_sync immediataly before f_close has no advantage because f_close performs f_sync in it. In other words, the differnce between those functions is that the file object is invalidated or not. </p>
52 </div>
55 <div class="para">
56 <h4>QuickInfo</h4>
57 <p>Available when <tt>_FS_READONLY == 0</tt>.</p>
58 </div>
61 <div class="para">
62 <h4>See Also</h4>
63 <p><tt><a href="close.html">f_close</a></tt></p>
64 </div>
66 <p class="foot"><a href="../00index_e.html">Return</a></p>
67 </body>
68 </html>