From a765e562eae6d5ee280c8bcbff9a61e0edcf53fc Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 1 Jun 2009 18:01:11 +0000 Subject: Doxygen warning. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1004 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/include/ioports.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/include/ioports.h b/src/include/ioports.h index 15792aa3d..26a393730 100644 --- a/src/include/ioports.h +++ b/src/include/ioports.h @@ -70,7 +70,7 @@ typedef struct { * @brief Writes a bits mask on a I/O port. * * @param[in] port the port identifier - * @param[in] mask the mask to be written on the specified port + * @param[in] value the value to be written on the specified port */ #define chPortWrite(port, value) ioport_write_lld(port, value) @@ -78,6 +78,7 @@ typedef struct { * @brief Reads an I/O port. * * @param[in] port the port identifier + * @return the port bits */ #define chPortRead(port) ioport_read_lld(port) @@ -134,6 +135,7 @@ typedef struct { * @brief Reads a value from an I/O bus. * * @param[in] bus the I/O bus + * @return the bus bits * * @note The operation is not guaranteed to be atomic on all the architectures, * for atomicity and/or portability reasons you may need to enclose port -- cgit v1.2.3