12#ifndef ZEPHYR_INCLUDE_DRIVERS_ADC_ADC_EMUL_H_
13#define ZEPHYR_INCLUDE_DRIVERS_ADC_ADC_EMUL_H_
ADC public API header file.
int adc_emul_ref_voltage_set(const struct device *dev, enum adc_reference ref, uint16_t value)
Set reference voltage.
int adc_emul_const_value_set(const struct device *dev, unsigned int chan, uint32_t value)
Set constant mV value input for emulated ADC chan.
int(* adc_emul_value_func)(const struct device *dev, unsigned int chan, void *data, uint32_t *result)
Type definition of the function which is used to obtain ADC mV input values.
Definition adc_emul.h:59
int adc_emul_value_func_set(const struct device *dev, unsigned int chan, adc_emul_value_func func, void *data)
Set function used to obtain voltage for input of emulated ADC chan.
adc_reference
ADC references.
Definition adc.h:77
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
Runtime device structure (in ROM) per driver instance.
Definition device.h:403
void * data
Address of the device instance private data.
Definition device.h:413