aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-09-11 10:21:12 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-09-11 10:21:12 +0000
commitd51840a0c799be3b684c5b379f4015475096b6b1 (patch)
treef000b095c2151c58c7db7f3c80d50325cf330bac
parentf9fd465da5bd86e2c650fe7f8f6f54b528c46aff (diff)
downloadChibiOS-d51840a0c799be3b684c5b379f4015475096b6b1.tar.gz
ChibiOS-d51840a0c799be3b684c5b379f4015475096b6b1.tar.bz2
ChibiOS-d51840a0c799be3b684c5b379f4015475096b6b1.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2174 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/src/adc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/os/hal/src/adc.c b/os/hal/src/adc.c
index 4eafafac4..23b096f3e 100644
--- a/os/hal/src/adc.c
+++ b/os/hal/src/adc.c
@@ -209,6 +209,9 @@ bool_t adcStartConversionI(ADCDriver *adcp,
/**
* @brief Stops an ongoing conversion.
+ * @details This function stops the currently ongoing conversion and returns
+ * the driver in the @p ADC_READY state. If there was no conversion
+ * being processed then the function does nothing.
*
* @param[in] adcp pointer to the @p ADCDriver object
*/
@@ -236,6 +239,9 @@ void adcStopConversion(ADCDriver *adcp) {
/**
* @brief Stops an ongoing conversion.
+ * @details This function stops the currently ongoing conversion and returns
+ * the driver in the @p ADC_READY state. If there was no conversion
+ * being processed then the function does nothing.
*
* @param[in] adcp pointer to the @p ADCDriver object
*/