aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-11-27 13:48:59 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-11-27 13:48:59 +0000
commit5e580ea5724dda947be738bf22f1f47adfb6feee (patch)
tree5f9c2c58f0f38e12bd087dd77876b75510706efa /os/rt/include
parent27f7d12db5d1fcc52bf831957560c56bb384c97f (diff)
downloadChibiOS-5e580ea5724dda947be738bf22f1f47adfb6feee.tar.gz
ChibiOS-5e580ea5724dda947be738bf22f1f47adfb6feee.tar.bz2
ChibiOS-5e580ea5724dda947be738bf22f1f47adfb6feee.zip
Added files abstraction to the HAL.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7542 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include')
-rw-r--r--os/rt/include/chstreams.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/include/chstreams.h b/os/rt/include/chstreams.h
index d57b28bde..1388e8c3e 100644
--- a/os/rt/include/chstreams.h
+++ b/os/rt/include/chstreams.h
@@ -116,7 +116,7 @@ typedef struct {
* @details This function writes a byte value to a channel. If the channel
* is not ready to accept data then the calling thread is suspended.
*
- * @param[in] ip pointer to a @p BaseChannel or derived class
+ * @param[in] ip pointer to a @p BaseSequentialStream or derived class
* @param[in] b the byte value to be written to the channel
*
* @return The operation status.
@@ -132,7 +132,7 @@ typedef struct {
* @details This function reads a byte value from a channel. If the data
* is not available then the calling thread is suspended.
*
- * @param[in] ip pointer to a @p BaseChannel or derived class
+ * @param[in] ip pointer to a @p BaseSequentialStream or derived class
*
* @return A byte value from the queue.
* @retval Q_RESET if an end-of-file condition has been met.