From e4be2c3b13ec4bc059b5b1b2f40c7f84ce6ab77c Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 7 Feb 2010 11:11:45 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1583 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/templates/adc_lld.h | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'os/hal/templates/adc_lld.h') diff --git a/os/hal/templates/adc_lld.h b/os/hal/templates/adc_lld.h index 2a9eca699..e4ed953b9 100644 --- a/os/hal/templates/adc_lld.h +++ b/os/hal/templates/adc_lld.h @@ -18,8 +18,9 @@ */ /** - * @file templates/adc_lld.h - * @brief ADC Driver subsystem low level driver header template. + * @file templates/adc_lld.h + * @brief ADC Driver subsystem low level driver header template. + * * @addtogroup ADC_LLD * @{ */ @@ -50,24 +51,25 @@ /*===========================================================================*/ /** - * @brief ADC sample data type. + * @brief ADC sample data type. */ typedef uint16_t adcsample_t; /** - * @brief Channels number in a conversion group. + * @brief Channels number in a conversion group. */ typedef uint16_t adc_channels_num_t; /** - * @brief ADC notification callback type. - * @param[in] buffer pointer to the most recent samples data - * @param[in] n number of buffer rows available starting from @p buffer + * @brief ADC notification callback type. + * + * @param[in] buffer pointer to the most recent samples data + * @param[in] n number of buffer rows available starting from @p buffer */ typedef void (*adccallback_t)(adcsample_t *buffer, size_t n); /** - * @brief Conversion group configuration structure. + * @brief Conversion group configuration structure. * @details This implementation-dependent structure describes a conversion * operation. */ @@ -84,15 +86,15 @@ typedef struct { } ADCConversionGroup; /** - * @brief Driver configuration structure. - * @note It could be empty on some architectures. + * @brief Driver configuration structure. + * @note It could be empty on some architectures. */ typedef struct { } ADCConfig; /** - * @brief Structure representing an ADC driver. + * @brief Structure representing an ADC driver. */ typedef struct { /** -- cgit v1.2.3