Merge branch 'feature/rgb_lcd_yuv_converter' into 'master'

RGB-YUV converter

Closes IDF-4598

See merge request espressif/esp-idf!19094
This commit is contained in:
morris
2022-09-01 13:41:14 +08:00
15 changed files with 345 additions and 11 deletions

View File

@@ -603,6 +603,10 @@ config SOC_LCD_RGB_DATA_WIDTH
int
default 16
config SOC_LCD_SUPPORT_RGB_YUV_CONV
bool
default y
config SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH
int
default 128

View File

@@ -240,6 +240,7 @@
#define SOC_LCD_RGB_PANELS (1U) /*!< Support one RGB LCD panel */
#define SOC_LCD_I80_BUS_WIDTH (16) /*!< Intel 8080 bus width */
#define SOC_LCD_RGB_DATA_WIDTH (16) /*!< Number of LCD data lines */
#define SOC_LCD_SUPPORT_RGB_YUV_CONV (1) /*!< Support color format conversion between RGB and YUV */
/*-------------------------- RTC CAPS --------------------------------------*/
#define SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH (128)