Skip to content

Fix the esp_lcd_dpi_panel_config_t intialization order (AEGHB-1088) #516

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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