2019-11-01 13:45:29 +01:00
|
|
|
# Top-level configuration file for LED strip drivers.
|
|
|
|
|
2017-10-16 22:02:23 +02:00
|
|
|
# Copyright (c) 2017 Linaro Limited
|
2018-02-20 14:10:54 +01:00
|
|
|
# Copyright (c) 2018 Intel Corporation
|
2017-10-16 22:02:23 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig LED_STRIP
|
|
|
|
bool "LED strip drivers"
|
|
|
|
help
|
2019-11-01 10:24:07 +01:00
|
|
|
Include LED strip drivers in the system configuration.
|
2017-10-16 22:02:23 +02:00
|
|
|
|
|
|
|
if LED_STRIP
|
|
|
|
|
2018-10-09 00:23:11 +02:00
|
|
|
module = LED_STRIP
|
|
|
|
module-str = LED strip
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2017-10-16 22:02:23 +02:00
|
|
|
|
|
|
|
config LED_STRIP_INIT_PRIORITY
|
|
|
|
int "LED strip initialization priority"
|
|
|
|
default 90
|
|
|
|
help
|
|
|
|
System initialization priority for LED strip drivers.
|
|
|
|
|
|
|
|
# Hidden option. The extra byte enables efficient serialization and transmission
|
|
|
|
# for drivers which require 4 B on wire for every 3 B of color, e.g. APA102, but
|
|
|
|
# is not normally needed.
|
|
|
|
config LED_STRIP_RGB_SCRATCH
|
|
|
|
bool
|
|
|
|
|
2017-10-17 17:20:33 +02:00
|
|
|
source "drivers/led_strip/Kconfig.lpd880x"
|
|
|
|
|
2017-10-17 05:28:15 +02:00
|
|
|
source "drivers/led_strip/Kconfig.ws2812"
|
|
|
|
|
2018-02-12 22:35:20 +01:00
|
|
|
source "drivers/led_strip/Kconfig.apa102"
|
|
|
|
|
2017-10-16 22:02:23 +02:00
|
|
|
endif # LED_STRIP
|