mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-13 13:50:21 +00:00
feat(lcd): pre-support rgb and i80 lcd driver on esp32p4
added LL functions for LCD_CAM module, only the LCD part
This commit is contained in:
@@ -820,7 +820,7 @@ typedef union {
|
||||
} lcdcam_lc_reg_date_reg_t;
|
||||
|
||||
|
||||
typedef struct lcdcam_dev_t {
|
||||
typedef struct lcd_cam_dev_t {
|
||||
volatile lcdcam_lcd_clock_reg_t lcd_clock;
|
||||
volatile lcdcam_cam_ctrl_reg_t cam_ctrl;
|
||||
volatile lcdcam_cam_ctrl1_reg_t cam_ctrl1;
|
||||
@@ -843,13 +843,15 @@ typedef struct lcdcam_dev_t {
|
||||
volatile lcdcam_lc_dma_int_clr_reg_t lc_dma_int_clr;
|
||||
uint32_t reserved_074[34];
|
||||
volatile lcdcam_lc_reg_date_reg_t lc_reg_date;
|
||||
} lcdcam_dev_t;
|
||||
} lcd_cam_dev_t;
|
||||
|
||||
|
||||
#ifndef __cplusplus
|
||||
_Static_assert(sizeof(lcdcam_dev_t) == 0x100, "Invalid size of lcdcam_dev_t structure");
|
||||
_Static_assert(sizeof(lcd_cam_dev_t) == 0x100, "Invalid size of lcdcam_dev_t structure");
|
||||
#endif
|
||||
|
||||
extern lcd_cam_dev_t LCD_CAM;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user