Kconfig 817 B

123456789101112131415161718192021222324
  1. #menu "Driver configurations"
  2. menu "ADC configuration"
  3. config ADC_FORCE_XPD_FSM
  4. bool "Use the FSM to control ADC power"
  5. default n
  6. help
  7. ADC power can be controlled by the FSM instead of software. This allows the ADC to
  8. be shut off when it is not working leading to lower power consumption. However
  9. using the FSM control ADC power will increase the noise of ADC.
  10. config ADC2_DISABLE_DAC
  11. bool "Disable DAC when ADC2 is used on GPIO 25 and 26"
  12. default y
  13. help
  14. If this is set, the ADC2 driver will disables the output of the DAC corresponding to the specified channel. This is the default value.
  15. For testing, disable this option so that we can measure the output of DAC by internal ADC.
  16. endmenu # ADC Configuration
  17. #endmenu # Driver configurations