X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fadc.h;h=acc0786c9793d9a733a3dc1c8e831ed3d9a96460;hb=024bf80e5f29e4de00d0813d23a4d3b67245ead7;hp=d34accfe0eb3ffc4839efc9eacf9463f8e8a4116;hpb=5f65d77840d7b773f10fd5c4850fdf5eebbb955f;p=bertos.git diff --git a/bertos/drv/adc.h b/bertos/drv/adc.h index d34accfe..acc0786c 100644 --- a/bertos/drv/adc.h +++ b/bertos/drv/adc.h @@ -30,12 +30,18 @@ * * --> * - * \version $Id$ + * \defgroup adc Generic ADC driver + * \ingroup drivers + * \{ + * \brief Analog to Digital Converter driver (ADC). * - * \brief ADC driver (interface) + * Configuration file: cfg_adc.h * - * \version $Id$ * \author Francesco Sacchi + * + * $WIZ$ module_name = "adc" + * $WIZ$ module_configuration = "bertos/cfg/cfg_adc.h" + * $WIZ$ module_supports = "not atmega103" */ @@ -66,4 +72,5 @@ void adc_init(void); */ #define ADC_RANGECONV(data, y1, y2) (((((int32_t)(data)) * ((y2) - (y1))) / ((1 << ADC_BITS) - 1)) + (y1)) +/** \} */ //defgroup adc #endif /* DRV_ADC_H */