mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-02 23:23:16 +00:00
• Supports led_on/off, led_set_brightness (0–100 %, 152 Hz default), and led_blink (7 ms – 1.685 s) with automatic sharing of the two on-chip PWM engines; returns –EBUSY when a third distinct pair is requested. • Includes basic runtime-PM boilerplate to honour power-domain control; the device itself has no dedicated low-power states. Signed-off-by: Van Petrosyan <van.petrosyan@sensirion.com>
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# Copyright (c) 2018 Linaro Limited
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Top-level configuration file for LED drivers.
|
|
|
|
menuconfig LED
|
|
bool "Light-Emitting Diode (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.
|
|
|
|
# zephyr-keep-sorted-start
|
|
source "drivers/led/Kconfig.axp192"
|
|
source "drivers/led/Kconfig.dac"
|
|
source "drivers/led/Kconfig.gpio"
|
|
source "drivers/led/Kconfig.ht16k33"
|
|
source "drivers/led/Kconfig.is31fl3194"
|
|
source "drivers/led/Kconfig.is31fl3216a"
|
|
source "drivers/led/Kconfig.is31fl3733"
|
|
source "drivers/led/Kconfig.leds-group-multicolor"
|
|
source "drivers/led/Kconfig.lp3943"
|
|
source "drivers/led/Kconfig.lp50xx"
|
|
source "drivers/led/Kconfig.lp5562"
|
|
source "drivers/led/Kconfig.lp5569"
|
|
source "drivers/led/Kconfig.modulino"
|
|
source "drivers/led/Kconfig.ncp5623"
|
|
source "drivers/led/Kconfig.npm13xx"
|
|
source "drivers/led/Kconfig.pca9533"
|
|
source "drivers/led/Kconfig.pca9633"
|
|
source "drivers/led/Kconfig.pwm"
|
|
source "drivers/led/Kconfig.tlc59108"
|
|
source "drivers/led/Kconfig.xec"
|
|
# zephyr-keep-sorted-stop
|
|
|
|
endif # LED
|