2019-11-01 20:45:29 +08:00
|
|
|
# Top-level configuration file for LED strip drivers.
|
|
|
|
|
2017-10-17 04:02:23 +08:00
|
|
|
# Copyright (c) 2017 Linaro Limited
|
2018-02-20 21:10:54 +08:00
|
|
|
# Copyright (c) 2018 Intel Corporation
|
2017-10-17 04:02:23 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig LED_STRIP
|
|
|
|
bool "LED strip drivers"
|
|
|
|
help
|
2019-11-01 17:24:07 +08:00
|
|
|
Include LED strip drivers in the system configuration.
|
2017-10-17 04:02:23 +08:00
|
|
|
|
|
|
|
if LED_STRIP
|
|
|
|
|
2018-10-09 06:23:11 +08:00
|
|
|
module = LED_STRIP
|
|
|
|
module-str = LED strip
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2017-10-17 04:02:23 +08: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 23:20:33 +08:00
|
|
|
source "drivers/led_strip/Kconfig.lpd880x"
|
|
|
|
|
2017-10-17 11:28:15 +08:00
|
|
|
source "drivers/led_strip/Kconfig.ws2812"
|
|
|
|
|
2018-02-13 05:35:20 +08:00
|
|
|
source "drivers/led_strip/Kconfig.apa102"
|
|
|
|
|
2017-10-17 04:02:23 +08:00
|
|
|
endif # LED_STRIP
|