Fixed some RDY_ leftovers in HAL.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7768 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
19d593770f
commit
28b2143a44
|
@ -713,7 +713,7 @@ static inline void osalThreadQueueObjectInit(threads_queue_t *tqp) {
|
||||||
* .
|
* .
|
||||||
* @return The message from @p osalQueueWakeupOneI() or
|
* @return The message from @p osalQueueWakeupOneI() or
|
||||||
* @p osalQueueWakeupAllI() functions.
|
* @p osalQueueWakeupAllI() functions.
|
||||||
* @retval RDY_TIMEOUT if the thread has not been dequeued within the
|
* @retval MSG_TIMEOUT if the thread has not been dequeued within the
|
||||||
* specified timeout or if the function has been
|
* specified timeout or if the function has been
|
||||||
* invoked with @p TIME_IMMEDIATE as timeout
|
* invoked with @p TIME_IMMEDIATE as timeout
|
||||||
* specification.
|
* specification.
|
||||||
|
|
|
@ -703,7 +703,7 @@ static inline void osalThreadQueueObjectInit(threads_queue_t *tqp) {
|
||||||
* .
|
* .
|
||||||
* @return The message from @p osalQueueWakeupOneI() or
|
* @return The message from @p osalQueueWakeupOneI() or
|
||||||
* @p osalQueueWakeupAllI() functions.
|
* @p osalQueueWakeupAllI() functions.
|
||||||
* @retval RDY_TIMEOUT if the thread has not been dequeued within the
|
* @retval MSG_TIMEOUT if the thread has not been dequeued within the
|
||||||
* specified timeout or if the function has been
|
* specified timeout or if the function has been
|
||||||
* invoked with @p TIME_IMMEDIATE as timeout
|
* invoked with @p TIME_IMMEDIATE as timeout
|
||||||
* specification.
|
* specification.
|
||||||
|
|
|
@ -259,11 +259,11 @@ void adcStopConversionI(ADCDriver *adcp) {
|
||||||
* @param[in] depth buffer depth (matrix rows number). The buffer depth
|
* @param[in] depth buffer depth (matrix rows number). The buffer depth
|
||||||
* must be one or an even number.
|
* must be one or an even number.
|
||||||
* @return The operation result.
|
* @return The operation result.
|
||||||
* @retval RDY_OK Conversion finished.
|
* @retval MSG_OK Conversion finished.
|
||||||
* @retval RDY_RESET The conversion has been stopped using
|
* @retval MSG_RESET The conversion has been stopped using
|
||||||
* @p acdStopConversion() or @p acdStopConversionI(),
|
* @p acdStopConversion() or @p acdStopConversionI(),
|
||||||
* the result buffer may contain incorrect data.
|
* the result buffer may contain incorrect data.
|
||||||
* @retval RDY_TIMEOUT The conversion has been stopped because an hardware
|
* @retval MSG_TIMEOUT The conversion has been stopped because an hardware
|
||||||
* error.
|
* error.
|
||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
|
|
|
@ -141,8 +141,8 @@ void macStop(MACDriver *macp) {
|
||||||
* - @a TIME_INFINITE no timeout.
|
* - @a TIME_INFINITE no timeout.
|
||||||
* .
|
* .
|
||||||
* @return The operation status.
|
* @return The operation status.
|
||||||
* @retval RDY_OK the descriptor was obtained.
|
* @retval MSG_OK the descriptor was obtained.
|
||||||
* @retval RDY_TIMEOUT the operation timed out, descriptor not initialized.
|
* @retval MSG_TIMEOUT the operation timed out, descriptor not initialized.
|
||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
|
@ -201,8 +201,8 @@ void macReleaseTransmitDescriptor(MACTransmitDescriptor *tdp) {
|
||||||
* - @a TIME_INFINITE no timeout.
|
* - @a TIME_INFINITE no timeout.
|
||||||
* .
|
* .
|
||||||
* @return The operation status.
|
* @return The operation status.
|
||||||
* @retval RDY_OK the descriptor was obtained.
|
* @retval MSG_OK the descriptor was obtained.
|
||||||
* @retval RDY_TIMEOUT the operation timed out, descriptor not initialized.
|
* @retval MSG_TIMEOUT the operation timed out, descriptor not initialized.
|
||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -124,8 +124,8 @@ void mac_lld_stop(MACDriver *macp) {
|
||||||
* @param[in] macp pointer to the @p MACDriver object
|
* @param[in] macp pointer to the @p MACDriver object
|
||||||
* @param[out] tdp pointer to a @p MACTransmitDescriptor structure
|
* @param[out] tdp pointer to a @p MACTransmitDescriptor structure
|
||||||
* @return The operation status.
|
* @return The operation status.
|
||||||
* @retval RDY_OK the descriptor has been obtained.
|
* @retval MSG_OK the descriptor has been obtained.
|
||||||
* @retval RDY_TIMEOUT descriptor not available.
|
* @retval MSG_TIMEOUT descriptor not available.
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
|
@ -158,8 +158,8 @@ void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp) {
|
||||||
* @param[in] macp pointer to the @p MACDriver object
|
* @param[in] macp pointer to the @p MACDriver object
|
||||||
* @param[out] rdp pointer to a @p MACReceiveDescriptor structure
|
* @param[out] rdp pointer to a @p MACReceiveDescriptor structure
|
||||||
* @return The operation status.
|
* @return The operation status.
|
||||||
* @retval RDY_OK the descriptor has been obtained.
|
* @retval MSG_OK the descriptor has been obtained.
|
||||||
* @retval RDY_TIMEOUT descriptor not available.
|
* @retval MSG_TIMEOUT descriptor not available.
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -718,7 +718,7 @@ static inline void osalThreadQueueObjectInit(threads_queue_t *tqp) {
|
||||||
* .
|
* .
|
||||||
* @return The message from @p osalQueueWakeupOneI() or
|
* @return The message from @p osalQueueWakeupOneI() or
|
||||||
* @p osalQueueWakeupAllI() functions.
|
* @p osalQueueWakeupAllI() functions.
|
||||||
* @retval RDY_TIMEOUT if the thread has not been dequeued within the
|
* @retval MSG_TIMEOUT if the thread has not been dequeued within the
|
||||||
* specified timeout or if the function has been
|
* specified timeout or if the function has been
|
||||||
* invoked with @p TIME_IMMEDIATE as timeout
|
* invoked with @p TIME_IMMEDIATE as timeout
|
||||||
* specification.
|
* specification.
|
||||||
|
|
Loading…
Reference in New Issue