Home
last modified time | relevance | path

Searched refs:strip (Results 1 – 25 of 131) sorted by relevance

123456

/Zephyr-latest/samples/drivers/led/led_strip/src/
Dmain.c27 #error Unable to determine length of LED strip
42 static const struct device *const strip = DEVICE_DT_GET(STRIP_NODE); variable
49 if (device_is_ready(strip)) { in main()
50 LOG_INF("Found LED strip device %s", strip->name); in main()
52 LOG_ERR("LED strip device %s is not ready", strip->name); in main()
62 rc = led_strip_update_rgb(strip, pixels, STRIP_NUM_PIXELS); in main()
/Zephyr-latest/samples/drivers/led/led_strip/
DREADME.rst1 .. zephyr:code-sample:: led-strip
2 :name: LED strip
5 Control an LED strip.
10 This sample application demonstrates basic usage of the LED strip.
15 Zephyr supports various LED strip chips. For example,
23 - If the LED strip connects to the SPI bus, SPI communications usually use 5V
38 #. Ensure your Zephyr board, the 5V power supply, and the LED strip
41 pin of the first IC in the strip.
43 pin of the first IC in the strip.
44 #. Connect the 5V power supply pin to the 5V input of the LED strip.
[all …]
/Zephyr-latest/drivers/led_strip/
DKconfig1 # Top-level configuration file for LED strip drivers.
8 bool "Light-Emitting Diode (LED) strip drivers"
10 Include LED strip drivers in the system configuration.
15 module-str = LED strip
19 int "LED strip initialization priority"
22 System initialization priority for LED strip drivers.
DKconfig.tlc59716 bool "TLC5971 (and compatible) LED strip driver"
11 Enable LED strip driver for daisy chains of TLC5971-ish devices
DKconfig.ws281211 bool "WS2812 LED strip SPI driver"
16 Enable driver for WS2812 (and compatibles) LED strip using SPI.
21 bool "WS2812 LED strip I2S driver"
26 Enable driver for WS2812 (and compatibles) LED strip using I2S.
32 bool "WS2812 LED strip GPIO driver"
40 Enable driver for WS2812 (and compatibles) LED strip directly
49 DT_CHOSEN_LED_STRIP := zephyr,led-strip
96 bool "WS2812 LED strip Raspberry Pi Pico PIO driver"
101 Enable driver for WS2812 (and compatibles) LED strip using
DKconfig.apa1028 bool "APA102 SPI LED strip driver"
14 Enable the LED strip driver for a chain of APA102 RGB LEDs.
DKconfig.lpd880x5 bool "LPD880x SPI LED strip driver"
11 Enable LED strip driver for daisy chains of LPD880x
/Zephyr-latest/drivers/display/
DKconfig.led_strip_matrix5 bool "LED strip matrix display driver"
10 Enable LED strip matrix display (LED strip arranged in
/Zephyr-latest/cmake/bintools/llvm/
Dtarget_bintools.cmake86 # - strip: Name of command for stripping symbols
87 # In this implementation `strip` is used
90 # strip_flag_all : --strip-all
91 # strip_flag_debug : --strip-debug
92 # strip_flag_dwo : --strip-dwo
93 # strip_flag_infile : empty, strip doesn't take arguments for input file
96 # This is using strip from bintools.
99 # Any flag the strip command requires for processing
103 set_property(TARGET bintools PROPERTY strip_flag_all --strip-all)
104 set_property(TARGET bintools PROPERTY strip_flag_debug --strip-debug)
[all …]
/Zephyr-latest/cmake/bintools/gnu/
Dtarget_bintools.cmake79 # - strip: Name of command for stripping symbols
80 # In this implementation `strip` is used
83 # strip_flag_all : --strip-all
84 # strip_flag_debug : --strip-debug
85 # strip_flag_dwo : --strip-dwo
86 # strip_flag_infile : empty, strip doesn't take arguments for input file
89 # This is using strip from bintools.
92 # Any flag the strip command requires for processing
96 set_property(TARGET bintools PROPERTY strip_flag_all --strip-all)
97 set_property(TARGET bintools PROPERTY strip_flag_debug --strip-debug)
[all …]
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/
Dutils.py22 logger.debug('Found matching key: %s' % line.strip())
23 return m.group(1).strip('"\'')
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dconfig_parser.py22 args = arg_list.strip().split()
35 extracted_fields[name].append(val.strip('\'"'))
110 return value.strip()
125 value = value.strip()
134 value = value.strip()
/Zephyr-latest/doc/_extensions/zephyr/
Dlink-roles.py40 return output.strip().decode("utf-8")
89 module = module_match.group(1).strip()
90 link = module_match.group(2).strip()
/Zephyr-latest/boards/shields/adafruit_neopixel_grid_bff/
Dadafruit_neopixel_grid_bff.overlay10 led-strip = &bff_led_strip;
Dadafruit_neopixel_grid_bff_display.overlay9 compatible = "led-strip-matrix";
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/resources/
Dshell_simulator.py20 line = line.strip()
/Zephyr-latest/tests/misc/check_init_priorities/
Dvalidate_check_init_priorities_output.py27 output.append(line.strip())
/Zephyr-latest/samples/drivers/led/led_strip/boards/
D96b_carbon_stm32f401xe.overlay24 led-strip = &lpd8806;
Dnucleo_l432kc.overlay24 led-strip = &apa102;
Dbbc_microbit.overlay23 led-strip = &led_strip;
/Zephyr-latest/doc/hardware/peripherals/
Dled.rst10 strip form.
/Zephyr-latest/scripts/west_commands/runners/
Duf2.py65 return k.strip(), val.strip()
/Zephyr-latest/scripts/west_commands/zspdx/
Dcmakecache.py20 sline = line.strip()
/Zephyr-latest/cmake/bintools/host-gnu/
Dtarget.cmake11 find_program(CMAKE_STRIP strip)
/Zephyr-latest/scripts/west_commands/
Dsdk.py218 version = f.readlines()[0].strip()
495 if kv[0].strip() == "ver":
496 info.version = kv[1].strip()
497 elif kv[0].strip() == "dir":
498 info.path = kv[1].strip()
511 ver = f.readline().strip()
560 all_tcs = [l.strip() for l in f.readlines()]

123456