diff options
Diffstat (limited to 'os/hal/src/adc.c')
-rw-r--r-- | os/hal/src/adc.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/os/hal/src/adc.c b/os/hal/src/adc.c index dff7d828b..2a329d003 100644 --- a/os/hal/src/adc.c +++ b/os/hal/src/adc.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -126,10 +126,10 @@ void adcStop(ADCDriver *adcp) { * @note The buffer is organized as a matrix of M*N elements where M is the
* channels number configured into the conversion group and N is the
* buffer depth. The samples are sequentially written into the buffer
- * with no gaps. - * - * @param[in] adcp pointer to the @p ADCDriver object - * @param[in] grpp pointer to a @p ADCConversionGroup object + * with no gaps.
+ *
+ * @param[in] adcp pointer to the @p ADCDriver object
+ * @param[in] grpp pointer to a @p ADCConversionGroup object
* @param[out] samples pointer to the samples buffer
* @param[in] depth buffer depth (matrix rows number). The buffer depth
* must be one or an even number.
@@ -170,8 +170,8 @@ bool_t adcStartConversion(ADCDriver *adcp, /**
* @brief Stops an ongoing conversion.
- * - * @param[in] adcp pointer to the @p ADCDriver object + *
+ * @param[in] adcp pointer to the @p ADCDriver object
*/
void adcStopConversion(ADCDriver *adcp) {
@@ -199,7 +199,7 @@ void adcStopConversion(ADCDriver *adcp) { * @brief Waits for completion.
* @details If the conversion is not completed or not yet started then the
* invoking thread waits for a conversion completion event.
- * + *
* @param[in] adcp pointer to the @p ADCDriver object
* @param[in] timeout the number of ticks before the operation timeouts,
* the following special values are allowed:
@@ -208,7 +208,7 @@ void adcStopConversion(ADCDriver *adcp) { * .
* @return The operation result.
* @retval RDY_OK conversion finished.
- * @retval RDY_TIMEOUT conversion not finished within the specified time. + * @retval RDY_TIMEOUT conversion not finished within the specified time.
*/
msg_t adcWaitConversion(ADCDriver *adcp, systime_t timeout) {
|