2015-09-22 00:39:22 +02:00
|
|
|
# Kconfig - PWM configuration options
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
|
|
#
|
2017-01-19 02:01:01 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-09-22 00:39:22 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig PWM
|
|
|
|
bool "PWM (Pulse Width Modulation) Drivers"
|
|
|
|
help
|
|
|
|
Enable config options for PWM drivers.
|
2015-09-22 01:28:58 +02:00
|
|
|
|
2016-03-17 19:37:41 +01:00
|
|
|
if PWM
|
2016-02-26 21:27:38 +01:00
|
|
|
|
2018-09-23 03:02:55 +02:00
|
|
|
module = PWM
|
|
|
|
module-str = pwm
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2017-07-17 21:59:00 +02:00
|
|
|
|
|
|
|
config PWM_0
|
|
|
|
bool "Enable PWM port 0"
|
|
|
|
|
|
|
|
config PWM_1
|
|
|
|
bool "Enable PWM port 1"
|
|
|
|
|
|
|
|
config PWM_2
|
|
|
|
bool "Enable PWM port 2"
|
|
|
|
|
|
|
|
config PWM_3
|
|
|
|
bool "Enable PWM port 3"
|
|
|
|
|
2018-07-17 18:23:03 +02:00
|
|
|
config PWM_4
|
|
|
|
bool "Enable PWM port 4"
|
|
|
|
|
2016-03-17 19:37:41 +01:00
|
|
|
source "drivers/pwm/Kconfig.pca9685"
|
2016-02-26 21:27:38 +01:00
|
|
|
|
2016-03-17 19:37:41 +01:00
|
|
|
source "drivers/pwm/Kconfig.qmsi"
|
2016-02-26 21:27:38 +01:00
|
|
|
|
2016-03-17 19:37:41 +01:00
|
|
|
source "drivers/pwm/Kconfig.dw"
|
2016-02-26 21:27:38 +01:00
|
|
|
|
2016-11-25 17:21:26 +01:00
|
|
|
source "drivers/pwm/Kconfig.stm32"
|
|
|
|
|
2017-04-11 05:08:52 +02:00
|
|
|
source "drivers/pwm/Kconfig.nrf5_sw"
|
|
|
|
|
2018-05-03 23:40:12 +02:00
|
|
|
source "drivers/pwm/Kconfig.nrfx"
|
|
|
|
|
2017-07-17 22:14:20 +02:00
|
|
|
source "drivers/pwm/Kconfig.mcux_ftm"
|
|
|
|
|
2018-07-17 18:23:03 +02:00
|
|
|
source "drivers/pwm/Kconfig.imx"
|
|
|
|
|
2017-12-01 11:05:13 +01:00
|
|
|
source "drivers/pwm/Kconfig.esp32"
|
|
|
|
|
2019-01-26 13:32:55 +01:00
|
|
|
source "drivers/pwm/Kconfig.sam"
|
|
|
|
|
2016-03-17 19:37:41 +01:00
|
|
|
endif # PWM
|