mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-24 08:05:45 +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>
60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
# Kconfig.pca9685 - PCA9685 PWM configuration options
|
|
#
|
|
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
################################################
|
|
# PCA9685
|
|
################################################
|
|
|
|
menuconfig PWM_PCA9685
|
|
bool "PCA9685 I2C-based PWM chip"
|
|
depends on PWM && I2C
|
|
default n
|
|
help
|
|
Enable driver for PCA9685 I2C-based PWM chip.
|
|
|
|
if PWM_PCA9685
|
|
|
|
config PWM_PCA9685_INIT_PRIORITY
|
|
int
|
|
depends on PWM_PCA9685
|
|
default 70
|
|
prompt "Init priority"
|
|
help
|
|
Device driver initialization priority.
|
|
|
|
config PWM_PCA9685_0
|
|
bool "PCA9685 PWM chip #0"
|
|
depends on PWM_PCA9685
|
|
default n
|
|
help
|
|
Enable config options for the PCA9685 I2C-based PWM chip #0.
|
|
|
|
config PWM_PCA9685_0_DEV_NAME
|
|
string "PCA9685 PWM chip #0 Device Name"
|
|
depends on PWM_PCA9685_0
|
|
default "PWM_0"
|
|
help
|
|
Specify the device name for the PCA9685 I2C-based PWM chip #0.
|
|
|
|
config PWM_PCA9685_0_I2C_ADDR
|
|
hex "PCA9685 PWM chip #0 I2C slave address"
|
|
depends on PWM_PCA9685_0
|
|
default 0x0
|
|
help
|
|
Specify the I2C slave address for the PCA9685 I2C-based PWM chip #0.
|
|
|
|
config PWM_PCA9685_0_I2C_MASTER_DEV_NAME
|
|
string "I2C Master where PCA9685 PWM chip #0 is connected"
|
|
depends on PWM_PCA9685_0
|
|
default ""
|
|
help
|
|
Specify the device name of the I2C master device to which this
|
|
PCA9685 chip #0 is binded.
|
|
|
|
endif # PWM_PCA9685
|