aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/hal_queues.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-12-02 09:35:07 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-12-02 09:35:07 +0000
commit0ee4e06235207136c66135d57b639e4cfff0d937 (patch)
tree0f3f21dc50a05f3452464901c97a9da78876bc0f /os/hal/src/hal_queues.c
parentbad3f755e18bb9964adacbec3402253b5a483336 (diff)
downloadChibiOS-0ee4e06235207136c66135d57b639e4cfff0d937.tar.gz
ChibiOS-0ee4e06235207136c66135d57b639e4cfff0d937.tar.bz2
ChibiOS-0ee4e06235207136c66135d57b639e4cfff0d937.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7554 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src/hal_queues.c')
-rw-r--r--os/hal/src/hal_queues.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/os/hal/src/hal_queues.c b/os/hal/src/hal_queues.c
index d45494380..d607a44c8 100644
--- a/os/hal/src/hal_queues.c
+++ b/os/hal/src/hal_queues.c
@@ -47,8 +47,7 @@
* @brief Initializes an input queue.
* @details A Semaphore is internally initialized and works as a counter of
* the bytes contained in the queue.
- * @note The callback is invoked from within the S-Locked system state,
- * see @ref system_states.
+ * @note The callback is invoked from within the S-Locked system state.
*
* @param[out] iqp pointer to an @p input_queue_t structure
* @param[in] bp pointer to a memory area allocated as queue buffer
@@ -225,8 +224,7 @@ size_t iqReadTimeout(input_queue_t *iqp, uint8_t *bp,
* @brief Initializes an output queue.
* @details A Semaphore is internally initialized and works as a counter of
* the free bytes in the queue.
- * @note The callback is invoked from within the S-Locked system state,
- * see @ref system_states.
+ * @note The callback is invoked from within the S-Locked system state.
*
* @param[out] oqp pointer to an @p output_queue_t structure
* @param[in] bp pointer to a memory area allocated as queue buffer