Kconfig 1.2 KB

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