mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 13:51:57 +00:00
Update pwm drivers to use DT_HAS_<compat>_ENABLED Kconfig symbol to expose the driver and enable it by default based on devicetree. We remove 'depend on' Kconfig for symbols that would be implied by the devicetree node existing. Signed-off-by: Kumar Gala <galak@kernel.org>
16 lines
457 B
Plaintext
16 lines
457 B
Plaintext
# STM32 PWM configuration options
|
|
|
|
# Copyright (c) 2016 Linaro Limited.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config PWM_STM32
|
|
bool "STM32 MCU PWM driver"
|
|
default y
|
|
depends on DT_HAS_ST_STM32_PWM_ENABLED
|
|
select USE_STM32_LL_TIM
|
|
select USE_STM32_LL_RCC if SOC_SERIES_STM32F4X || SOC_SERIES_STM32F7X || SOC_SERIES_STM32H7X
|
|
help
|
|
This option enables the PWM driver for STM32 family of
|
|
processors. Say y if you wish to use PWM port on STM32
|
|
MCU.
|