Kconfig 769 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Kconfig - PWM configuration options
  2. #
  3. # Copyright (c) 2015 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig PWM
  8. bool
  9. prompt "PWM device drivers"
  10. default n
  11. help
  12. Enable input device driver configuration
  13. if PWM
  14. config LOG_PWM_DEV_LEVEL
  15. int
  16. prompt "INPUT Device drivers log level"
  17. range 0 4
  18. default 0
  19. help
  20. Sets log level for PWM Device driver.
  21. Levels are:
  22. - 0 OFF, do not write
  23. - 1 ERROR, only write SYS_LOG_ERR
  24. - 2 WARNING, write SYS_LOG_WRN in addition to previous level
  25. - 3 INFO, write SYS_LOG_INF in addition to previous levels
  26. - 4 DEBUG, write SYS_LOG_DBG in addition to previous levels
  27. config PWM_ACTS
  28. bool "Actions SoC PWM driver"
  29. default n
  30. help
  31. Enable support for Actions PWM driver.
  32. endif # PWM