1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/include/adc.h

31 lines
467 B
C

/**
* @defgroup drivers_adc ADC
* @ingroup drivers
* @brief Generic interface for ADC drivers
* @{
*
* @file adc.h
*/
#ifndef ADC_H
#define ADC_H
#include <stdint.h>
/**
* @brief Initialize ADC.
*/
void adc_init(void);
/**
* @brief Read ADC value of selected channel.
*
* Valid channel numbers are from 0 to 2.
*
* @return ADC value of selected channel.
*/
uint16_t adc_read(uint8_t channel);
/** @} */
#endif /* ADC_H */