diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-08 09:06:48 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-08 09:06:48 +0000 |
commit | 4682a4476ec53884628b1a2b61457938f5914038 (patch) | |
tree | d205f21828617813413e0e6db285592cd1897a02 /os/hal | |
parent | 06f43125b330a04111b8bbe3b475140703c97e22 (diff) | |
download | ChibiOS-4682a4476ec53884628b1a2b61457938f5914038.tar.gz ChibiOS-4682a4476ec53884628b1a2b61457938f5914038.tar.bz2 ChibiOS-4682a4476ec53884628b1a2b61457938f5914038.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1391 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/AT91SAM7/hal_lld.c | 2 | ||||
-rw-r--r-- | os/hal/platforms/AT91SAM7/hal_lld.h | 2 | ||||
-rw-r--r-- | os/hal/platforms/LPC214x/hal_lld.c | 6 | ||||
-rw-r--r-- | os/hal/platforms/LPC214x/hal_lld.h | 6 | ||||
-rw-r--r-- | os/hal/platforms/LPC214x/platform.dox | 7 | ||||
-rw-r--r-- | os/hal/src/can.c | 2 |
6 files changed, 16 insertions, 9 deletions
diff --git a/os/hal/platforms/AT91SAM7/hal_lld.c b/os/hal/platforms/AT91SAM7/hal_lld.c index b79e40ffe..5a3859ed1 100644 --- a/os/hal/platforms/AT91SAM7/hal_lld.c +++ b/os/hal/platforms/AT91SAM7/hal_lld.c @@ -19,7 +19,7 @@ /**
* @file AT91SAM7/hal_lld.c
- * @brief AT91SAM7 HAL subsystem low level driver source
+ * @brief AT91SAM7 HAL subsystem low level driver source.
* @addtogroup AT91SAM7_HAL
* @{
*/
diff --git a/os/hal/platforms/AT91SAM7/hal_lld.h b/os/hal/platforms/AT91SAM7/hal_lld.h index 0a2d97a66..a328dfdf6 100644 --- a/os/hal/platforms/AT91SAM7/hal_lld.h +++ b/os/hal/platforms/AT91SAM7/hal_lld.h @@ -19,7 +19,7 @@ /**
* @file AT91SAM7/hal_lld.h
- * @brief AT91SAM7 HAL subsystem low level driver header
+ * @brief AT91SAM7 HAL subsystem low level driver header.
* @addtogroup AT91SAM7_HAL
* @{
*/
diff --git a/os/hal/platforms/LPC214x/hal_lld.c b/os/hal/platforms/LPC214x/hal_lld.c index 705a42498..a971afcbf 100644 --- a/os/hal/platforms/LPC214x/hal_lld.c +++ b/os/hal/platforms/LPC214x/hal_lld.c @@ -18,9 +18,9 @@ */
/**
- * @file templates/hal_lld.c
- * @brief HAL Driver subsystem low level driver source template
- * @addtogroup HAL_LLD
+ * @file LPC214x/hal_lld.c
+ * @brief LPC214x HAL subsystem low level driver source.
+ * @addtogroup LPC214x_HAL
* @{
*/
diff --git a/os/hal/platforms/LPC214x/hal_lld.h b/os/hal/platforms/LPC214x/hal_lld.h index dcedb386c..2ee5b829a 100644 --- a/os/hal/platforms/LPC214x/hal_lld.h +++ b/os/hal/platforms/LPC214x/hal_lld.h @@ -18,9 +18,9 @@ */
/**
- * @file templates/hal_lld.h
- * @brief HAL subsystem low level driver header template
- * @addtogroup HAL_LLD
+ * @file LPC214x/hal_lld.h
+ * @brief LPC214x HAL subsystem low level driver HEADER.
+ * @addtogroup LPC214x_HAL
* @{
*/
diff --git a/os/hal/platforms/LPC214x/platform.dox b/os/hal/platforms/LPC214x/platform.dox index 65bcaab31..ce86dc171 100644 --- a/os/hal/platforms/LPC214x/platform.dox +++ b/os/hal/platforms/LPC214x/platform.dox @@ -42,6 +42,13 @@ */
/**
+ * @defgroup LPC214x_HAL LPC214x HAL Support
+ * @brief HAL support.
+ *
+ * @ingroup LPC214x
+ */
+
+/**
* @defgroup LPC214x_PAL LPC214x I/O Ports Support
* @brief I/O Ports peripherals support.
* @details This module supports the LPC214x FIO controller. The controller
diff --git a/os/hal/src/can.c b/os/hal/src/can.c index 7359e57b7..e48095bc0 100644 --- a/os/hal/src/can.c +++ b/os/hal/src/can.c @@ -150,7 +150,7 @@ msg_t canTransmit(CANDriver *canp, const CANTxFrame *ctfp, systime_t timeout) { * @note Trying to receive while in sleep mode simply enqueues the thread.
*
* @param[in] canp pointer to the @p CANDriver object
- * @param[out] cfp pointer to the buffer where the CAN frame is copied
+ * @param[out] crfp pointer to the buffer where the CAN frame is copied
* @param[in] timeout the number of ticks before the operation timeouts,
* the following special values are allowed:
* - @a TIME_IMMEDIATE immediate timeout (useful in an
|