FatFs R0.12b, released September 4, 2016

This commit is contained in:
Christopher Williams
2017-05-10 19:12:34 -07:00
parent 9798d01a6c
commit a353339125
57 changed files with 579 additions and 360 deletions
+3 -2
View File
@@ -80,9 +80,9 @@ FRESULT f_findfirst (
<div class="para use">
<h4>使用例</h4>
<pre>
<span class="c">/* ディレクトリ内のオブジェクトの検索と表示 */</span>
<span class="c">/* ディレクトリ内のjpegファイルの検索 */</span>
void find_image (void)
void find_image_file (void)
{
FRESULT fr; <span class="c">/* API戻り値 */</span>
DIR dj; <span class="c">/* ディレクトリ オブジェクト */</span>
@@ -94,6 +94,7 @@ void find_image (void)
printf("%s\n", fno.fname); <span class="c">/* 見つけた項目の名前を表示 */</span>
fr = f_findnext(&amp;dj, &amp;fno); <span class="c">/* 次を検索 */</span>
}
f_closedir(&amp;dj);
}
</pre>