Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,22 +95,22 @@ esp_err_t esp_lcd_new_panel_ek79007(const esp_lcd_panel_io_handle_t io, const es
*/
#define EK79007_1024_600_PANEL_60HZ_CONFIG(px_format) \
{ \
.virtual_channel = 0, \
.dpi_clk_src = MIPI_DSI_DPI_CLK_SRC_DEFAULT, \
.dpi_clock_freq_mhz = 52, \
.virtual_channel = 0, \
.pixel_format = px_format, \
.num_fbs = 1, \
.video_timing = { \
.h_size = 1024, \
.v_size = 600, \
.hsync_back_porch = 160, \
.hsync_pulse_width = 10, \
.hsync_back_porch = 160, \
.hsync_front_porch = 160, \
.vsync_back_porch = 23, \
.vsync_pulse_width = 1, \
.vsync_back_porch = 23, \
.vsync_front_porch = 12, \
}, \
.flags.use_dma2d = true, \
.flags = { .use_dma2d = true, }, \
}

#ifdef __cplusplus
Expand Down