1234567891011121314151617181920212223242526272829303132333435363738 |
- # Kconfig - PWM configuration options
- #
- # Copyright (c) 2015 Intel Corporation
- #
- # SPDX-License-Identifier: Apache-2.0
- #
- menuconfig PWM
- bool
- prompt "PWM device drivers"
- default n
- help
- Enable input device driver configuration
- if PWM
- config LOG_PWM_DEV_LEVEL
- int
- prompt "INPUT Device drivers log level"
- range 0 4
- default 0
- help
- Sets log level for PWM Device driver.
- Levels are:
- - 0 OFF, do not write
- - 1 ERROR, only write SYS_LOG_ERR
- - 2 WARNING, write SYS_LOG_WRN in addition to previous level
- - 3 INFO, write SYS_LOG_INF in addition to previous levels
- - 4 DEBUG, write SYS_LOG_DBG in addition to previous levels
- config PWM_ACTS
- bool "Actions SoC PWM driver"
- default n
- help
- Enable support for Actions PWM driver.
- endif # PWM
|