feat(dsi): can use gray8 image as input

This commit is contained in:
morris
2025-09-12 18:20:14 +08:00
parent be2b6efadc
commit 27e8d5ce9d
8 changed files with 103 additions and 13 deletions
+1
View File
@@ -56,6 +56,7 @@ typedef enum {
LCD_COLOR_FMT_RGB666 = COLOR_TYPE_ID(COLOR_SPACE_RGB, COLOR_PIXEL_RGB666), ///< RGB666
LCD_COLOR_FMT_RGB888 = COLOR_TYPE_ID(COLOR_SPACE_RGB, COLOR_PIXEL_RGB888), ///< RGB888
LCD_COLOR_FMT_YUV422 = COLOR_TYPE_ID(COLOR_SPACE_YUV, COLOR_PIXEL_YUV422), ///< YUV422
LCD_COLOR_FMT_GRAY8 = COLOR_TYPE_ID(COLOR_SPACE_GRAY, COLOR_PIXEL_GRAY8), ///< 8-bit gray scale
} lcd_color_format_t;
/**