:orphan: .. title:: PWM_STM32 .. option:: CONFIG_PWM_STM32 *STM32 MCU PWM driver* Type: ``bool`` Help ==== 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 =================== (\ :option:`PWM ` && \ :option:`SOC_FAMILY_STM32 `) || (\ :option:`SOC_FAMILY_STM32 ` && \ :option:`PWM `) *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols selected by this symbol =============================== - \ :option:`USE_STM32_LL_TIM ` - \ :option:`USE_STM32_LL_RCC ` if \ :option:`SOC_SERIES_STM32F4X ` || \ :option:`SOC_SERIES_STM32F7X ` || \ :option:`SOC_SERIES_STM32H7X ` Kconfig definitions =================== .. highlight:: kconfig At ``soc/arm/st_stm32/common/Kconfig.defconfig.series:39`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/home/runner/work/bridle/bridle/workspace/build/Kconfig/Kconfig.soc.defconfig:1`` → ``soc/arm/st_stm32/Kconfig.defconfig:3`` Menu path: (Top) .. parsed-literal:: config PWM_STM32 bool default y depends on \ :option:`PWM ` && \ :option:`SOC_FAMILY_STM32 ` ---- At ``drivers/pwm/Kconfig.stm32:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:44`` → ``drivers/pwm/Kconfig:30`` Menu path: (Top) → Device Drivers → PWM (Pulse Width Modulation) Drivers .. parsed-literal:: config PWM_STM32 bool "STM32 MCU PWM driver" select \ :option:`USE_STM32_LL_TIM ` select \ :option:`USE_STM32_LL_RCC ` if \ :option:`SOC_SERIES_STM32F4X ` || \ :option:`SOC_SERIES_STM32F7X ` || \ :option:`SOC_SERIES_STM32H7X ` depends on \ :option:`SOC_FAMILY_STM32 ` && \ :option:`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.)*