1menu "ADC-Calibration" 2 3 config ADC_CAL_EFUSE_TP_ENABLE 4 depends on IDF_TARGET_ESP32 5 bool "Use Two Point Values" 6 default "y" 7 help 8 Some ESP32s have Two Point calibration values burned into eFuse BLOCK3. 9 This option will allow the ADC calibration component to characterize the 10 ADC-Voltage curve using Two Point values if they are available. 11 12 config ADC_CAL_EFUSE_VREF_ENABLE 13 depends on IDF_TARGET_ESP32 14 bool "Use eFuse Vref" 15 default "y" 16 help 17 Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow 18 the ADC calibration component to characterize the ADC-Voltage curve using 19 eFuse Vref if it is available. 20 21 config ADC_CAL_LUT_ENABLE 22 depends on IDF_TARGET_ESP32 23 bool "Use Lookup Tables" 24 default "y" 25 help 26 This option will allow the ADC calibration component to use Lookup Tables 27 to correct for non-linear behavior in 11db attenuation. Other attenuations 28 do not exhibit non-linear behavior hence will not be affected by this option. 29 30 31endmenu # ADC-Calibration 32