zephyr/drivers/Kconfig
Marti Bolivar b533841bf0 drivers: led_strip: add public API for addressable LED strips
This API covers drivers for strips, or strings, of individually
addressable LEDs. Both RGB and grayscale LED strip drivers can be
implemented within these APIs.

The API only provides for updating the entire strip, since not all
strips support updating individual LEDs without affecting the others.

Subsequent patches will add individual driver support.

Signed-off-by: Marti Bolivar <marti.bolivar@linaro.org>
2017-10-28 13:23:30 -04:00

82 lines
1.3 KiB
Plaintext

# Kconfig - drivers configuration options
#
# Copyright (c) 2015 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menu "Device Drivers"
source "drivers/bluetooth/Kconfig"
config IEEE802154
bool
default n
default y if NETWORKING_WITH_15_4 || NET_L2_IEEE802154
source "drivers/ieee802154/Kconfig"
source "drivers/console/Kconfig"
source "drivers/ethernet/Kconfig"
source "drivers/net/Kconfig"
source "drivers/serial/Kconfig"
source "drivers/interrupt_controller/Kconfig"
source "drivers/timer/Kconfig"
source "drivers/random/Kconfig"
source "drivers/grove/Kconfig"
source "drivers/pci/Kconfig"
source "drivers/gpio/Kconfig"
source "drivers/shared_irq/Kconfig"
source "drivers/spi/Kconfig"
source "drivers/i2c/Kconfig"
source "drivers/i2s/Kconfig"
source "drivers/pwm/Kconfig"
source "drivers/pinmux/Kconfig"
source "drivers/adc/Kconfig"
source "drivers/rtc/Kconfig"
source "drivers/watchdog/Kconfig"
source "drivers/clock_control/Kconfig"
source "drivers/ipm/Kconfig"
source "drivers/aio/Kconfig"
source "drivers/flash/Kconfig"
source "drivers/sensor/Kconfig"
source "drivers/counter/Kconfig"
source "drivers/dma/Kconfig"
source "drivers/usb/Kconfig"
source "drivers/crypto/Kconfig"
source "drivers/display/Kconfig"
source "drivers/led_strip/Kconfig"
endmenu