1# STM32 PWM configuration options
2
3# Copyright (c) 2016 Linaro Limited.
4# SPDX-License-Identifier: Apache-2.0
5
6config PWM_STM32
7	bool "STM32 MCU PWM driver"
8	default y
9	depends on DT_HAS_ST_STM32_PWM_ENABLED
10	select USE_STM32_LL_TIM
11	select USE_STM32_LL_RCC if SOC_SERIES_STM32F4X || SOC_SERIES_STM32F7X || SOC_SERIES_STM32H7X
12	select RESET
13	help
14	  This option enables the PWM driver for STM32 family of
15	  processors. Say y if you wish to use PWM port on STM32
16	  MCU.
17