1# ADC configuration options 2 3# Copyright (c) 2020 ITE Corporation. All Rights Reserved. 4# SPDX-License-Identifier: Apache-2.0 5 6config ADC_ITE_IT8XXX2 7 bool "ITE IT8XXX2 ADC driver" 8 default y 9 depends on DT_HAS_ITE_IT8XXX2_ADC_ENABLED 10 select PINCTRL 11 help 12 This option enables the ADC driver for IT8XXX2 13 family of processors. 14 Voltage range 0 to 3000mV. 15 Support 10-bit resolution. 16 Support 8 channels: ch0~ch7. 17 18if ADC_ITE_IT8XXX2 19 20config ADC_IT8XXX2_VOL_FULL_SCALE 21 bool "ADC internal voltage as full-scale" 22 help 23 This option enables ADC internal reference 24 voltage as full-scale 3300mV. 25 26endif # ADC_ITE_IT8XXX2 27