30 lines
477 B
Plaintext
30 lines
477 B
Plaintext
# Kconfig - PWM configuration options
|
|
|
|
#
|
|
# Copyright (c) 2015 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig PWM
|
|
bool "PWM (Pulse Width Modulation) Drivers"
|
|
default n
|
|
help
|
|
Enable config options for PWM drivers.
|
|
|
|
if PWM
|
|
|
|
source "drivers/pwm/Kconfig.pca9685"
|
|
|
|
source "drivers/pwm/Kconfig.qmsi"
|
|
|
|
source "drivers/pwm/Kconfig.dw"
|
|
|
|
source "drivers/pwm/Kconfig.k64"
|
|
|
|
source "drivers/pwm/Kconfig.stm32"
|
|
|
|
source "drivers/pwm/Kconfig.nrf5_sw"
|
|
|
|
endif # PWM
|