doxygen: define groups for drivers

Change-Id: Ibf6b6d8586086de5b288fee1e3b4fb1101716fe1
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2015-10-26 06:18:44 -04:00
commit 75482aae8a
8 changed files with 86 additions and 2 deletions

View file

@ -28,6 +28,12 @@
#include <stdint.h>
#include <device.h>
/**
* @brief ADC Interface
* @defgroup adc_interface ADC Interface
* @ingroup io_interfaces
* @{
*/
/**
* Callback type.
* ADC_CB_DONE means sampling went fine and is over
@ -164,4 +170,8 @@ static inline int adc_read(struct device *dev, struct adc_seq_table *seq_table)
return api->read(dev, seq_table);
}
/**
* @}
*/
#endif /* __INCLUDE_ADC_H__ */