summaryrefslogtreecommitdiff
path: root/fatfs/documents/doc/forward.html
diff options
context:
space:
mode:
authorLeo C.2024-06-30 09:37:28 +0200
committerLeo C.2024-06-30 09:37:28 +0200
commit5630b9308323c3f3aaa09be8fe0f3aecaa826473 (patch)
treead11998289caa623b98507393f838611317ad03e /fatfs/documents/doc/forward.html
parentdbd0d34e68c73b9d3628cc1a1bda0b883976fc8b (diff)
downloadz180-stamp-chan-fatfs.zip
Import fatfs R0.15fatfs-0.15chan-fatfs
Diffstat (limited to 'fatfs/documents/doc/forward.html')
-rw-r--r--fatfs/documents/doc/forward.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/fatfs/documents/doc/forward.html b/fatfs/documents/doc/forward.html
index ada0a05..fdb5f49 100644
--- a/fatfs/documents/doc/forward.html
+++ b/fatfs/documents/doc/forward.html
@@ -54,7 +54,7 @@ FRESULT f_forward (
<div class="para desc">
<h4>Description</h4>
-<p>The <tt>f_forward</tt> function reads the data from the file and forward it to the outgoing stream without data buffer. This is suitable for small memory system because it does not require any data buffer at application module. The file pointer of the file object increases in number of bytes forwarded. In case of <tt class="arg">*bf</tt> is less than <tt class="arg">btf</tt> without error, it means the requested bytes could not be transferred due to end of file or stream goes busy during data transfer.</p>
+<p>The <tt>f_forward</tt> function reads the data from the file and forward it to the outgoing stream. This function is suitable for small memory system, because it does not require any data buffer in the application module. The file pointer of the file object advances in number of bytes forwarded. In case of <tt class="arg">*bf</tt> is less than <tt class="arg">btf</tt> without error, it means the requested size of data could not be transferred due to end of file or stream goes busy during data transfer.</p>
</div>
@@ -65,7 +65,7 @@ FRESULT f_forward (
<div class="para use">
-<h4>Example (Audio playback)</h4>
+<h4>Example</h4>
<pre>
<span class="c">/*------------------------------------------------------------------------*/</span>
<span class="c">/* Sample code of data transfer function to be called back from f_forward */</span>