This examples shows how to use the AD4114 ADC on a stm32f3_disco board. As the AD4114 is a 24bits ADC resolution we need to be able to pass 32bits buffer to get the samples. CONFIG_SEQUENCE_RESOLUTION is set to 12 instead of 24, and the gain zephyr,vref-mv is adapted to avoid overflows using the exisiting adc_raw_to_millivolts function. Signed-off-by: Pierrick Curt <pierrickcurt@gmail.com>
4 lines
143 B
Text
4 lines
143 B
Text
# A4114 driver can only acquire one sequence sample
|
|
CONFIG_SEQUENCE_SAMPLES=1
|
|
CONFIG_SEQUENCE_RESOLUTION=12
|
|
CONFIG_SEQUENCE_32BITS_REGISTERS=y
|