diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-26 21:19:03 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-26 21:19:03 +0000 |
commit | 7f06b944cda28d334d790969c6483a11ed3b04d4 (patch) | |
tree | 0f81ea8f067ff36ca59f3652f88772c789ad27b8 /os/io/templates/can_lld.c | |
parent | 780110bd2cbfd2adae472c5fcd7e014289559204 (diff) | |
download | ChibiOS-7f06b944cda28d334d790969c6483a11ed3b04d4.tar.gz ChibiOS-7f06b944cda28d334d790969c6483a11ed3b04d4.tar.bz2 ChibiOS-7f06b944cda28d334d790969c6483a11ed3b04d4.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1328 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/io/templates/can_lld.c')
-rw-r--r-- | os/io/templates/can_lld.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/os/io/templates/can_lld.c b/os/io/templates/can_lld.c index 4fc0ae7d0..e1c4243b0 100644 --- a/os/io/templates/can_lld.c +++ b/os/io/templates/can_lld.c @@ -93,8 +93,8 @@ bool_t can_lld_can_transmit(CANDriver *canp) { /**
* @brief Inserts a frame into the transmit queue.
* - * @param canp[in] pointer to the @p CANDriver object
- * @param cfp[in] pointer to the CAN frame to be transmitted
+ * @param[in] canp pointer to the @p CANDriver object
+ * @param[in] cfp pointer to the CAN frame to be transmitted
*
* @return The operation status.
* @retval RDY_OK frame transmitted. @@ -121,8 +121,8 @@ bool_t can_lld_can_receive(CANDriver *canp) { /**
* @brief Receives a frame from the input queue.
* - * @param canp[in] pointer to the @p CANDriver object
- * @param cfp[out] pointer to the buffer where the CAN frame is copied
+ * @param[in] canp pointer to the @p CANDriver object
+ * @param[out] cfp pointer to the buffer where the CAN frame is copied
*
* @return The operation status.
* @retval RDY_OK frame received.
@@ -136,7 +136,7 @@ msg_t can_lld_receive(CANDriver *canp, CANFrame *cfp) { /**
* @brief Enters the sleep mode.
*
- * @param canp[in] pointer to the @p CANDriver object
+ * @param[in] canp pointer to the @p CANDriver object
*/
void can_lld_sleep(CANDriver *canp) {
@@ -145,7 +145,7 @@ void can_lld_sleep(CANDriver *canp) { /**
* @brief Enforces leaving the sleep mode.
*
- * @param canp[in] pointer to the @p CANDriver object
+ * @param[in] canp pointer to the @p CANDriver object
*/
void can_lld_wakeup(CANDriver *canp) {
|