diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-06-01 18:01:11 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-06-01 18:01:11 +0000 |
commit | a765e562eae6d5ee280c8bcbff9a61e0edcf53fc (patch) | |
tree | abfe6f25a4cbe315efad58fadb9816e01a229291 /src | |
parent | 0da4e6e067db019f455b43a3391a1510f517d2cf (diff) | |
download | ChibiOS-a765e562eae6d5ee280c8bcbff9a61e0edcf53fc.tar.gz ChibiOS-a765e562eae6d5ee280c8bcbff9a61e0edcf53fc.tar.bz2 ChibiOS-a765e562eae6d5ee280c8bcbff9a61e0edcf53fc.zip |
Doxygen warning.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1004 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r-- | src/include/ioports.h | 4 |
1 files changed, 3 insertions, 1 deletions
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
|