summaryrefslogtreecommitdiff
path: root/fatfs/doc/en/getfree.html
diff options
context:
space:
mode:
authorLeo C2016-09-08 20:59:55 +0200
committerLeo C2016-09-08 20:59:55 +0200
commitb30c4e8f1aef96f6fdc93da9f125545f5f74d06e (patch)
treee1f9e4cfcc0c24cfb8f35825d83aa5f878c2717a /fatfs/doc/en/getfree.html
parente1deb7c3bc0500aabf5d099adb231f6d1d27f01d (diff)
parent70702af1370e44e32fb2c3c507e4759a187b4fe5 (diff)
downloadz180-stamp-b30c4e8f1aef96f6fdc93da9f125545f5f74d06e.zip
Merge branch 'chan-fatfs' into fatfs-integration
# Conflicts: # .gitignore # fatfs/src/diskio.h # fatfs/src/option/ccsbcs.c # include/avr/ffconf.h # include/integer.h
Diffstat (limited to 'fatfs/doc/en/getfree.html')
-rw-r--r--fatfs/doc/en/getfree.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/fatfs/doc/en/getfree.html b/fatfs/doc/en/getfree.html
index 5a68975..1cfc09a 100644
--- a/fatfs/doc/en/getfree.html
+++ b/fatfs/doc/en/getfree.html
@@ -27,7 +27,7 @@ FRESULT f_getfree (
<h4>Parameters</h4>
<dl class="par">
<dt>path</dt>
-<dd>Pinter to the null-terminated string that specifies the <a href="filename.html">logical drive</a>. A null-string means the default drive.</dd>
+<dd>Pointer to the null-terminated string that specifies the <a href="filename.html">logical drive</a>. A null-string means the default drive.</dd>
<dt>nclst</dt>
<dd>Pointer to the <tt>DWORD</tt> variable to store number of free clusters.</dd>
<dt>fatfs</dt>
@@ -53,7 +53,7 @@ FRESULT f_getfree (
<div class="para desc">
<h4>Descriptions</h4>
-<p>The <tt>f_getfree()</tt> function gets number of free clusters on the volume. The member <tt>csize</tt> in the file system object indicates number of sectors per cluster, so that the free space in unit of sector can be calcurated with this information. When FSINFO structure on the FAT32 volume is not in sync, this function can return an incorrect free cluster count. To avoid this problem, FatFs can be forced full FAT scan by <tt>_FS_NOFSINFO</tt> option.</p>
+<p>The <tt>f_getfree</tt> function gets number of free clusters on the volume. The member <tt>csize</tt> in the file system object indicates number of sectors per cluster, so that the free space in unit of sector can be calcurated with this information. When FSINFO structure on the FAT32 volume is not in sync, this function can return an incorrect free cluster count. To avoid this problem, FatFs can be forced full FAT scan by <tt><a href="config.html#fs_nofsinfo">_FS_NOFSINFO</a></tt> option.</p>
</div>