zephyr/drivers/pwm/Kconfig.mcux
Ulf Magnusson bd6e04411e kconfig: Clean up header comments and make them consistent
Use this short header style in all Kconfig files:

    # <description>

    # <copyright>
    # <license>

    ...

Also change all <description>s from

    # Kconfig[.extension] - Foo-related options

to just

    # Foo-related options

It's clear enough that it's about Kconfig.

The <description> cleanup was done with this command, along with some
manual cleanup (big letter at the start, etc.)

    git ls-files '*Kconfig*' | \
        xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-11-04 17:31:27 -05:00

111 lines
3.0 KiB
Plaintext

# STM32 PWM configuration options
# Copyright (c) 2019 Linaro Limited.
# SPDX-License-Identifier: Apache-2.0
menuconfig PWM_MCUX
bool "MCUX PWM driver"
depends on HAS_MCUX_PWM
help
Enable mcux pwm driver.
if PWM_MCUX
config FLEXPWM1_PWM0
bool "NXP MCUX FLEXPWM1_PWM0 Output"
help
Enable output for FLEXPWM1_PWM0 in the driver. Say y here
if you want to use FLEXPWM1_PWM0 output.
config FLEXPWM1_PWM1
bool "NXP MCUX FLEXPWM1_PWM1 Output"
help
Enable output for FLEXPWM1_PWM1 in the driver. Say y here
if you want to use FLEXPWM1_PWM1 output.
config FLEXPWM1_PWM2
bool "NXP MCUX FLEXPWM1_PWM2 Output"
help
Enable output for FLEXPWM1_PWM2 in the driver. Say y here
if you want to use FLEXPWM1_PWM2 output.
config FLEXPWM1_PWM3
bool "NXP MCUX FLEXPWM1_PWM3 Output"
help
Enable output for FLEXPWM1_PWM3 in the driver. Say y here
if you want to use FLEXPWM1_PWM3 output.
config FLEXPWM2_PWM0
bool "NXP MCUX FLEXPWM2_PWM0 Output"
help
Enable output for FLEXPWM2_PWM0 in the driver. Say y here
if you want to use FLEXPWM2_PWM0 output.
config FLEXPWM2_PWM1
bool "NXP MCUX FLEXPWM2_PWM1 Output"
help
Enable output for FLEXPWM2_PWM1 in the driver. Say y here
if you want to use FLEXPWM2_PWM1 output.
config FLEXPWM2_PWM2
bool "NXP MCUX FLEXPWM2_PWM2 Output"
help
Enable output for FLEXPWM2_PWM2 in the driver. Say y here
if you want to use FLEXPWM2_PWM2 output.
config FLEXPWM2_PWM3
bool "NXP MCUX FLEXPWM2_PWM3 Output"
help
Enable output for FLEXPWM2_PWM3 in the driver. Say y here
if you want to use FLEXPWM2_PWM3 output.
config FLEXPWM3_PWM0
bool "NXP MCUX FLEXPWM3_PWM0 Output"
help
Enable output for FLEXPWM3_PWM0 in the driver. Say y here
if you want to use FLEXPWM3_PWM0 output.
config FLEXPWM3_PWM1
bool "NXP MCUX FLEXPWM3_PWM1 Output"
help
Enable output for FLEXPWM3_PWM1 in the driver. Say y here
if you want to use FLEXPWM3_PWM1 output.
config FLEXPWM3_PWM2
bool "NXP MCUX FLEXPWM3_PWM2 Output"
help
Enable output for FLEXPWM3_PWM2 in the driver. Say y here
if you want to use FLEXPWM3_PWM2 output.
config FLEXPWM3_PWM3
bool "NXP MCUX FLEXPWM3_PWM3 Output"
help
Enable output for FLEXPWM3_PWM3 in the driver. Say y here
if you want to use FLEXPWM3_PWM3 output.
config FLEXPWM4_PWM0
bool "NXP MCUX FLEXPWM4_PWM0 Output"
help
Enable output for FLEXPWM4_PWM0 in the driver. Say y here
if you want to use FLEXPWM4_PWM0 output.
config FLEXPWM4_PWM1
bool "NXP MCUX FLEXPWM4_PWM1 Output"
help
Enable output for FLEXPWM4_PWM1 in the driver. Say y here
if you want to use FLEXPWM4_PWM1 output.
config FLEXPWM4_PWM2
bool "NXP MCUX FLEXPWM4_PWM2 Output"
help
Enable output for FLEXPWM4_PWM2 in the driver. Say y here
if you want to use FLEXPWM4_PWM2 output.
config FLEXPWM4_PWM3
bool "NXP MCUX FLEXPWM4_PWM3 Output"
help
Enable output for FLEXPWM4_PWM3 in the driver. Say y here
if you want to use FLEXPWM4_PWM3 output.
endif # PWM_MCUX