Home
last modified time | relevance | path

Searched refs:colors (Results 1 – 21 of 21) sorted by relevance

/Zephyr-Core-2.7.6/samples/drivers/led_lp503x/src/
Dmain.c29 static uint8_t colors[][3] = { variable
53 for (idx = 0; idx < ARRAY_SIZE(colors); idx++) { in run_led_test()
57 err = led_set_color(lp503x_dev, led, 3, colors[idx]); in run_led_test()
61 colors[idx][0], colors[idx][1], in run_led_test()
62 colors[idx][2], err); in run_led_test()
120 for (idx = 0; idx < ARRAY_SIZE(colors); idx++) { in run_channel_test()
128 col[0] = colors[idx][0]; in run_channel_test()
129 col[1] = colors[idx][1]; in run_channel_test()
130 col[2] = colors[idx][2]; in run_channel_test()
/Zephyr-Core-2.7.6/samples/drivers/led_lp5562/src/
Dmain.c35 static uint8_t colors[COLORS_TO_SHOW][VALUES_PER_COLOR] = { variable
186 colors[i][0], in main()
187 colors[i][1], in main()
188 colors[i][2]); in main()
214 colors[i][0], in main()
215 colors[i][1], in main()
216 colors[i][2]); in main()
/Zephyr-Core-2.7.6/tests/drivers/led/led_api/src/
Dtest_led_api.c167 uint8_t colors[TEST_MAX_COLORS + 1]; in test_led_set_color() local
184 memset(colors, 0, sizeof(colors)); in test_led_set_color()
187 ret = led_set_color(led_ctrl, led, num_colors + 1, colors); in test_led_set_color()
197 ret = led_set_color(led_ctrl, led, num_colors - 1, colors); in test_led_set_color()
209 memset(colors, 0, sizeof(colors)); in test_led_set_color()
212 colors[col] = level; in test_led_set_color()
215 num_colors, colors); in test_led_set_color()
/Zephyr-Core-2.7.6/subsys/shell/
Dshell_log_backend.c140 struct log_msg *msg, bool colors) in msg_process() argument
146 if (colors) { in msg_process()
159 bool colors = IS_ENABLED(CONFIG_SHELL_VT100_COLORS) && in z_shell_log_backend_process() local
166 if (colors) { in z_shell_log_backend_process()
173 if (colors) { in z_shell_log_backend_process()
187 msg_process(shell->log_backend->log_output, msg, colors); in z_shell_log_backend_process()
195 bool colors = IS_ENABLED(CONFIG_SHELL_VT100_COLORS) && in put() local
213 msg_process(shell->log_backend->log_output, msg, colors); in put()
358 bool locked, bool colors) in process_log_msg2() argument
365 if (colors) { in process_log_msg2()
[all …]
DKconfig134 bool "Enable colors in shell"
138 If enabled VT100 colors are used in shell (e.g. print errors in red).
Dshell_cmds.c431 SHELL_COND_CMD(CONFIG_SHELL_VT100_COMMANDS, colors, &m_sub_colors,
/Zephyr-Core-2.7.6/samples/drivers/led_ws2812/src/
Dmain.c28 static const struct led_rgb colors[] = { variable
53 memcpy(&pixels[cursor], &colors[color], sizeof(struct led_rgb)); in main()
64 if (color == ARRAY_SIZE(colors)) { in main()
/Zephyr-Core-2.7.6/samples/drivers/led_apa102/src/
Dmain.c28 static const struct led_rgb colors[] = { variable
46 if (rgb_start <= i && i < rgb_start + ARRAY_SIZE(colors)) { in color_at()
47 return &colors[i - rgb_start]; in color_at()
/Zephyr-Core-2.7.6/samples/drivers/led_lpd8806/src/
Dmain.c27 static const struct led_rgb colors[] = { variable
47 if (rgb_start <= i && i < rgb_start + ARRAY_SIZE(colors)) { in color_at()
48 return &colors[i - rgb_start]; in color_at()
/Zephyr-Core-2.7.6/samples/drivers/display/
DREADME.rst10 The rectangle colors and positions are chosen so that you can check the
/Zephyr-Core-2.7.6/subsys/logging/
DKconfig.formatting54 bool "Enable colors in the backend"
DKconfig.mode54 colors, or asynchronous logging, and all messages are simply
Dlog_output.c37 static const char *const colors[] = { variable
235 const char *log_color = start && (colors[level] != NULL) ? in color_print()
236 colors[level] : LOG_COLOR_CODE_DEFAULT; in color_print()
/Zephyr-Core-2.7.6/doc/_static/css/
Dlight.css6 * Light theme colors
Ddark.css6 * Dark theme colors
Dcustom.css7 * visual identity. Many colors are also overridden to use CSS variables.
/Zephyr-Core-2.7.6/doc/reference/shell/
Dindex.rst22 * Built-in commands: :command:`clear`, :command:`shell`, :command:`colors`,
278 /* Below code will execute "shell colors off" command on
282 "shell colors off");
387 * :command:`colors` - Toggles colored syntax. This might be helpful in
/Zephyr-Core-2.7.6/lib/gui/lvgl/
DKconfig.themes19 Material theme, flat theme with bold colors and light shadow, support
/Zephyr-Core-2.7.6/doc/
Dzephyr.doxyfile.in1125 # will adjust the colors in the style sheet and background images according to
1135 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
1137 # value of 255 will produce the most vivid colors.
1144 # luminance component of the colors in the HTML output. Values below 100
/Zephyr-Core-2.7.6/doc/releases/
Drelease-notes-2.7.rst1676 * :github:`38259` - subsys/shell: ``[JJ`` escape codes in logs after disabling colors
/Zephyr-Core-2.7.6/samples/modules/tflite-micro/hello_world/train/
Dtrain_hello_world_model.ipynb336 "# Plot the data in each partition in different colors:\n",