zephyr/drivers/led_strip/CMakeLists.txt
Johan Hedberg 9639c00fbb drivers: led_strip: Add driver for software-based WS2812B operation
This driver uses a bit-banging based technique of generating a signal
for the WS2812B LED strip. Since bit-banging is very timing sensitive,
where each CPU cycle counts, the driver uses inline assembly to
perform the most critical operataions. This initial version of the
driver only supports a Cortex-M0 implementation, and can e.g. be used
with the ZIP Halo LED strip for the BBC microbit:

https://www.kitronik.co.uk/5625-zip-halo-for-the-bbc-microbit.html

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
2018-03-03 20:46:53 +01:00

5 lines
211 B
CMake

zephyr_sources_ifdef(CONFIG_LPD880X_STRIP lpd880x.c)
zephyr_sources_ifdef(CONFIG_WS2812_STRIP ws2812.c)
zephyr_sources_ifdef(CONFIG_WS2812B_SW ws2812b_sw.c)
zephyr_sources_ifdef(CONFIG_APA102_STRIP apa102.c)