Home
last modified time | relevance | path

Searched refs:strip (Results 1 – 25 of 141) 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.cmake10 # elfconvert_flag_strip_unneeded: --strip-unneeded
38 set_property(TARGET bintools PROPERTY elfconvert_flag_strip_unneeded "--strip-unneeded")
90 # - strip: Name of command for stripping symbols
91 # In this implementation `strip` is used
94 # strip_flag_all : --strip-all
95 # strip_flag_debug : --strip-debug
96 # strip_flag_dwo : --strip-dwo
97 # strip_flag_infile : empty, strip doesn't take arguments for input file
100 # This is using strip from bintools.
103 # Any flag the strip command requires for processing
[all …]
/Zephyr-latest/cmake/bintools/gnu/
Dtarget_bintools.cmake10 # elfconvert_flag_strip_unneeded: --strip-unneeded
38 set_property(TARGET bintools PROPERTY elfconvert_flag_strip_unneeded "--strip-unneeded")
81 # - strip: Name of command for stripping symbols
82 # In this implementation `strip` is used
85 # strip_flag_all : --strip-all
86 # strip_flag_debug : --strip-debug
87 # strip_flag_dwo : --strip-dwo
88 # strip_flag_infile : empty, strip doesn't take arguments for input file
91 # This is using strip from bintools.
94 # Any flag the strip command requires for processing
[all …]
/Zephyr-latest/cmake/bintools/iar/
Dtarget_bintools.cmake78 # - strip: Name of command for stripping symbols
79 # In this implementation `strip` is used
82 # strip_flag_all : --strip-all
83 # strip_flag_debug : --strip-debug
84 # strip_flag_dwo : --strip-dwo
85 # strip_flag_infile : empty, strip doesn't take arguments for input file
88 # This is using strip from bintools.
91 # Any flag the strip command requires for processing
95 set_property(TARGET bintools PROPERTY strip_flag_all --strip-all)
96 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.py25 args = arg_list.strip().split()
38 extracted_fields[name].append(val.strip('\'"'))
116 return value.strip()
131 value = value.strip()
140 value = value.strip()
/Zephyr-latest/doc/_extensions/zephyr/
Dlink-roles.py40 return output.strip().decode("utf-8")
95 module = module_match.group(1).strip()
96 link = module_match.group(2).strip()
/Zephyr-latest/scripts/ci/
Dtwister_report_analyzer.py214 return line[line.index('fatal error: ') :].strip()
217 return last_warning[last_warning.index('undefined symbol') :].strip()
221 if next_line.strip():
231 return line[line.index('undefined reference') :].strip()
241 return line[line.index('error: ') :].strip()
243 last_warning = line[line.index('in function') :].strip()
263 if line.strip() and not line.strip().startswith('#')
/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;
/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)

123456