Kconfig 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # ADC configuration options
  2. # Copyright (c) 2015 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. #
  5. # ADC options
  6. #
  7. menuconfig ADC
  8. bool "ADC drivers"
  9. # All platforms that implement the ADC driver are now required to
  10. # provide relevant DTS entries.
  11. help
  12. Enable ADC (Analog to Digital Converter) driver configuration.
  13. if ADC
  14. config ADC_SHELL
  15. bool "Enable ADC Shell"
  16. default n
  17. depends on SHELL
  18. help
  19. Enable ADC Shell for testing.
  20. # By selecting or not this option particular ADC drivers indicate if it is
  21. # required to explicitly specify analog inputs when configuring channels or
  22. # just the channel identifier is sufficient.
  23. config ADC_CONFIGURABLE_INPUTS
  24. bool
  25. config ADC_ASYNC
  26. bool "Enable asynchronous call support"
  27. select POLL
  28. help
  29. This option enables the asynchronous API calls.
  30. module = ADC
  31. module-str = ADC
  32. source "subsys/logging/Kconfig.template.log_config"
  33. source "drivers/adc/Kconfig.acts"
  34. endif # ADC