mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-10 00:26:24 +00:00
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
47 lines
1017 B
Plaintext
47 lines
1017 B
Plaintext
# Kconfig.stm32 - STM32 PWM configuration options
|
|
#
|
|
#
|
|
# Copyright (c) 2016 Linaro Limited.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig PWM_STM32
|
|
bool "STM32 MCU PWM driver"
|
|
default n
|
|
depends on PWM && SOC_FAMILY_STM32
|
|
help
|
|
This option enables the PWM driver for STM32 family of
|
|
processors. Say y if you wish to use PWM port on STM32
|
|
MCU.
|
|
|
|
config PWM_STM32_1
|
|
bool "STM32 PWM 1 Output"
|
|
depends on PWM_STM32
|
|
default n
|
|
help
|
|
Enable output for PWM1 in the driver. Say y here
|
|
if you want to use PWM1 output.
|
|
|
|
config PWM_STM32_1_DEV_NAME
|
|
string "STM32 PWM Device Name"
|
|
default "PWM_1"
|
|
depends on PWM_STM32_1
|
|
help
|
|
Specify the device name for the PWM driver.
|
|
|
|
config PWM_STM32_2
|
|
bool "STM32 PWM 2 Output"
|
|
depends on PWM_STM32
|
|
default n
|
|
help
|
|
Enable output for PWM2 in the driver. Say y here
|
|
if you want to use PWM2 output.
|
|
|
|
config PWM_STM32_2_DEV_NAME
|
|
string "STM32 PWM Device Name"
|
|
default "PWM_2"
|
|
depends on PWM_STM32_2
|
|
help
|
|
Specify the device name for the PWM driver.
|