doc: Add ADC driver to drivers group.
authorlottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 28 Nov 2010 16:49:11 +0000 (16:49 +0000)
committerlottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 28 Nov 2010 16:49:11 +0000 (16:49 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4583 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/drv/adc.h

index 78f3e81d41e5ef8409e21030fb962fbf53f6d5d3..acc0786c9793d9a733a3dc1c8e831ed3d9a96460 100644 (file)
  *
  * -->
  *
+ * \defgroup adc Generic ADC driver
+ * \ingroup drivers
+ * \{
  * \brief Analog to Digital Converter driver (ADC).
  *
+ * <b>Configuration file</b>: cfg_adc.h
+ *
  * \author Francesco Sacchi <batt@develer.com>
  *
  * $WIZ$ module_name = "adc"
@@ -67,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 */