Searched refs:data_width (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-3.6.0/components/esp_lcd/src/ |
D | esp_lcd_rgb_panel.c | 67 size_t data_width; // Number of data lines (e.g. for RGB565, the data width is 16) member 101 ESP_GOTO_ON_FALSE(rgb_panel_config->data_width == 16, ESP_ERR_NOT_SUPPORTED, err, TAG, in esp_lcd_new_rgb_panel() 102 "unsupported data width %d", rgb_panel_config->data_width); in esp_lcd_new_rgb_panel() 104 …b_panel_config->timings.h_res * rgb_panel_config->timings.v_res * rgb_panel_config->data_width / 8; in esp_lcd_new_rgb_panel() 170 rgb_panel->data_width = rgb_panel_config->data_width; in esp_lcd_new_rgb_panel() 264 lcd_ll_set_data_width(rgb_panel->hal.dev, rgb_panel->data_width); in rgb_panel_init() 308 int bytes_per_pixel = rgb_panel->data_width / 8; in rgb_panel_draw_bitmap() 346 for (int i = 0; i < rgb_panel->data_width; i++) { in rgb_panel_invert_color() 394 for (size_t i = 0; i < panel_config->data_width; i++) { in lcd_rgb_panel_configure_gpio() 401 for (size_t i = 0; i < panel_config->data_width; i++) { in lcd_rgb_panel_configure_gpio()
|
/hal_espressif-3.6.0/components/esp_lcd/test/ |
D | test_rgb_panel.c | 45 .data_width = 16, 123 .data_width = 16,
|
/hal_espressif-3.6.0/components/esp_lcd/include/ |
D | esp_lcd_panel_rgb.h | 94 size_t data_width; /*!< Number of data lines */ member
|
/hal_espressif-3.6.0/components/hal/esp32s3/include/hal/ |
D | lcd_ll.h | 172 static inline void lcd_ll_set_command(lcd_cam_dev_t *dev, uint32_t data_width, uint32_t command) in lcd_ll_set_command() argument 176 if (data_width == 8) { in lcd_ll_set_command()
|