From 5e580ea5724dda947be738bf22f1f47adfb6feee Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 27 Nov 2014 13:48:59 +0000 Subject: Added files abstraction to the HAL. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7542 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/include/chstreams.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'os/rt/include') 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. -- cgit v1.2.3