:orphan: .. title:: CONFIG_PWM_STM32 .. kconfig:: CONFIG_PWM_STM32 CONFIG_PWM_STM32 ################ *STM32 MCU PWM driver* Type: ``bool`` Help ==== .. code-block:: none This option enables the PWM driver for STM32 family of processors. Say y if you wish to use PWM port on STM32 MCU. Direct dependencies =================== (\ :kconfig:`PWM ` && \ :kconfig:`SOC_FAMILY_STM32 `) || (\ :kconfig:`PWM ` && \ :kconfig:`SOC_FAMILY_STM32 `) || (\ :kconfig:`SOC_FAMILY_STM32 ` && \ :kconfig:`PWM `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y Symbols selected by this symbol =============================== - \ :kconfig:`USE_STM32_LL_TIM ` - \ :kconfig:`USE_STM32_LL_RCC ` if \ :kconfig:`SOC_SERIES_STM32F4X ` || \ :kconfig:`SOC_SERIES_STM32F7X ` || \ :kconfig:`SOC_SERIES_STM32H7X ` Kconfig definitions =================== At ``/arm/st_stm32/common/Kconfig.defconfig.series:43`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:25`` → ``/kconfig/Kconfig.soc.defconfig:1`` → ``/arm/st_stm32/Kconfig.defconfig:3`` Menu path: (Top) .. code-block:: kconfig config PWM_STM32 bool default y depends on PWM && SOC_FAMILY_STM32 ---- At ``/arm/st_stm32/common/Kconfig.defconfig.series:43`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` → ``/arm/st_stm32/Kconfig.defconfig:3`` Menu path: (Top) .. code-block:: kconfig config PWM_STM32 bool default y depends on PWM && SOC_FAMILY_STM32 ---- At ``/pwm/Kconfig.stm32:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:46`` → ``/pwm/Kconfig:32`` Menu path: (Top) → Device Drivers → PWM (Pulse Width Modulation) Drivers .. code-block:: kconfig config PWM_STM32 bool "STM32 MCU PWM driver" select USE_STM32_LL_TIM select USE_STM32_LL_RCC if SOC_SERIES_STM32F4X || SOC_SERIES_STM32F7X || SOC_SERIES_STM32H7X depends on SOC_FAMILY_STM32 && PWM help This option enables the PWM driver for STM32 family of processors. Say y if you wish to use PWM port on STM32 MCU. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*