diff options
Diffstat (limited to 'os/hal/include/io_channel.h')
-rw-r--r-- | os/hal/include/io_channel.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/os/hal/include/io_channel.h b/os/hal/include/io_channel.h index b7ef0f311..af90b431e 100644 --- a/os/hal/include/io_channel.h +++ b/os/hal/include/io_channel.h @@ -21,16 +21,17 @@ /**
* @file io_channel.h
* @brief I/O channels access.
- * @details This header defines abstract interfaces useful to access generic
+ * @details This header defines an abstract interface useful to access generic
* I/O serial devices in a standardized way.
*
* @addtogroup IO_CHANNEL
* @details This module defines an abstract interface for I/O channels by
- * extending the @p BaseSequentialStream interface. Note that no code
- * is present, I/O channels are just abstract interface like
- * structures, you should look at the systems as to a set of abstract
- * C++ classes (even if written in C). Specific device drivers can
- * use/extend the interface and implement them.<br>
+ * extending the @p BaseSequentialStream interface.<br>
+ * Note that no code is present, I/O channels are just abstract
+ * interface like structures, you should look at the systems as
+ * to a set of abstract C++ classes (even if written in C).
+ * Specific device drivers can use/extend the interface and
+ * implement them.<br>
* This system has the advantage to make the access to channels
* independent from the implementation logic.
* @{
|