FatFs R0.11, released Febrary 9, 2015

This commit is contained in:
Christopher Williams
2015-03-11 10:25:52 -07:00
parent 9ca3490602
commit 9acb379950
95 changed files with 1494 additions and 1031 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ FRESULT play_file (
if (rc) return rc;
<span class="c">/* 全てのデータが転送されるかエラーが発生するまで続ける */</span>
while (rc == FR_OK &amp;&amp; fil.fptr &lt; fil.fsize) {
while (rc == FR_OK &amp;&amp; !f_eof(&fil)) {
<span class="c">/* ほかの処理... */</span>