f452a086fb
Add support for TI TLC59108 an I2C 8-bit LED driver. Supported blinkink period: 41ms to 10730ms Supported brightness value: 0 to 100% This driver supports the following APIs: 1. led_blink 2. led_set_brightness 3. led_on 4. led_off This is a modified version of the NXP PCA9633 driver. Signed-off-by: John Kjellberg <kjellberg.john@gmail.com>
39 lines
832 B
Plaintext
39 lines
832 B
Plaintext
# Copyright (c) 2018 Linaro Limited
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Top-level configuration file for LED drivers.
|
|
|
|
menuconfig LED
|
|
bool "LED drivers"
|
|
help
|
|
Include LED drivers in the system configuration.
|
|
|
|
if LED
|
|
|
|
module = LED
|
|
module-str = led
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config LED_INIT_PRIORITY
|
|
int "LED initialization priority"
|
|
default 90
|
|
help
|
|
System initialization priority for LED drivers.
|
|
|
|
config LED_SHELL
|
|
bool "LED shell"
|
|
depends on SHELL
|
|
help
|
|
Enable LED shell for testing.
|
|
|
|
source "drivers/led/Kconfig.gpio"
|
|
source "drivers/led/Kconfig.ht16k33"
|
|
source "drivers/led/Kconfig.lp3943"
|
|
source "drivers/led/Kconfig.lp503x"
|
|
source "drivers/led/Kconfig.lp5562"
|
|
source "drivers/led/Kconfig.pca9633"
|
|
source "drivers/led/Kconfig.pwm"
|
|
source "drivers/led/Kconfig.tlc59108"
|
|
|
|
endif # LED
|