Add handy functions for handling non recurrent timeouts.
[bertos.git] / bertos / drv / adc.h
index d1b8b56b3ba09c4f9610abcc8dd74d9ab99b0462..acc0786c9793d9a733a3dc1c8e831ed3d9a96460 100644 (file)
  *
  * -->
  *
- * \version $Id$
- *
+ * \defgroup adc Generic ADC driver
+ * \ingroup drivers
+ * \{
  * \brief Analog to Digital Converter driver (ADC).
  *
- * \version $Id$
+ * <b>Configuration file</b>: cfg_adc.h
+ *
  * \author Francesco Sacchi <batt@develer.com>
  *
- * $WIZARD_MODULE = {
- * "name" : "adc",
- * "depends" : [],
- * "configuration" : "bertos/cfg/cfg_adc.h"
- * }
+ * $WIZ$ module_name = "adc"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_adc.h"
+ * $WIZ$ module_supports = "not atmega103"
  */
 
 
@@ -72,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 */