Searched refs:led_node_id (Results 1 – 3 of 3) sorted by relevance
/Zephyr-Core-3.5.0/tests/drivers/led/led_api/src/ |
D | test_led_api.c | 15 #define _COLOR_MAPPING(led_node_id) \ argument 16 const uint8_t test_color_mapping_##led_node_id[] = \ 17 DT_PROP(led_node_id, color_mapping) 19 #define COLOR_MAPPING(led_node_id) \ argument 20 IF_ENABLED(DT_NODE_HAS_PROP(led_node_id, color_mapping), \ 21 (_COLOR_MAPPING(led_node_id);)) 23 #define LED_INFO_COLOR(led_node_id) \ argument 25 .label = DT_PROP(led_node_id, label), \ 26 .index = DT_PROP_OR(led_node_id, index, 0), \ 28 DT_PROP_LEN(led_node_id, color_mapping), \ [all …]
|
/Zephyr-Core-3.5.0/drivers/led/ |
D | ncp5623.c | 194 #define COLOR_MAPPING(led_node_id) \ argument 195 static const uint8_t color_mapping_##led_node_id[] = DT_PROP(led_node_id, color_mapping); 197 #define LED_INFO(led_node_id) \ argument 199 .label = DT_PROP(led_node_id, label), \ 200 .index = DT_PROP(led_node_id, index), \ 201 .num_colors = DT_PROP_LEN(led_node_id, color_mapping), \ 202 .color_mapping = color_mapping_##led_node_id, \
|
D | lp50xx.c | 355 #define COLOR_MAPPING(led_node_id) \ argument 356 const uint8_t color_mapping_##led_node_id[] = \ 357 DT_PROP(led_node_id, color_mapping); 359 #define LED_INFO(led_node_id) \ argument 361 .label = DT_PROP(led_node_id, label), \ 362 .index = DT_PROP(led_node_id, index), \ 364 DT_PROP_LEN(led_node_id, color_mapping), \ 365 .color_mapping = color_mapping_##led_node_id, \
|