Skip to content

Commit e29ca73

Browse files
authored
Merge pull request #637 from suda-morris/feat/dsi_use_default_phy_clock_source
refactor(mipi_lcd): set phy_clk_src to 0 as default clock source
2 parents 18f803d + 6a896ec commit e29ca73

File tree

7 files changed

+6
-7
lines changed

7 files changed

+6
-7
lines changed

bsp/esp32_p4_function_ev_board/esp32_p4_function_ev_board.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,6 @@ lv_display_t *bsp_display_start(void)
975975
.hdmi_resolution = BSP_HDMI_RES_NONE,
976976
#endif
977977
.dsi_bus = {
978-
.phy_clk_src = MIPI_DSI_PHY_CLK_SRC_DEFAULT,
979978
.lane_bit_rate_mbps = BSP_LCD_MIPI_DSI_LANE_BITRATE_MBPS,
980979
}
981980
},

components/lcd/esp_lcd_ili9881c/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "1.0.1"
1+
version: "1.0.2"
22
targets:
33
- esp32p4
44
description: ESP LCD ILI9881C (MIPI DSI)

components/lcd/esp_lcd_ili9881c/include/esp_lcd_ili9881c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ esp_err_t esp_lcd_new_panel_ili9881c(const esp_lcd_panel_io_handle_t io, const e
7575
{ \
7676
.bus_id = 0, \
7777
.num_data_lanes = 2, \
78-
.phy_clk_src = MIPI_DSI_PHY_CLK_SRC_DEFAULT, \
78+
.phy_clk_src = 0, \
7979
.lane_bit_rate_mbps = 1000, \
8080
}
8181

components/lcd/esp_lcd_lt8912b/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "0.1.1"
1+
version: "0.1.2"
22
description: ESP LCD LT8912B (MIPI DSI - HDMI)
33
url: https://github.com/espressif/esp-bsp/tree/master/components/lcd/esp_lcd_lt8912b
44
repository: "https://github.com/espressif/esp-bsp.git"

components/lcd/esp_lcd_lt8912b/include/esp_lcd_lt8912b.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ bool esp_lcd_panel_lt8912b_is_ready(esp_lcd_panel_t *panel);
107107
{ \
108108
.bus_id = 0, \
109109
.num_data_lanes = 2, \
110-
.phy_clk_src = MIPI_DSI_PHY_CLK_SRC_DEFAULT, \
110+
.phy_clk_src = 0, \
111111
.lane_bit_rate_mbps = 1000, \
112112
}
113113

components/lcd/esp_lcd_st7796/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "1.3.4"
1+
version: "1.3.5"
22
targets:
33
- esp32
44
- esp32s2

components/lcd/esp_lcd_st7796/include/esp_lcd_st7796.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ esp_err_t esp_lcd_new_panel_st7796(const esp_lcd_panel_io_handle_t io, const esp
171171
{ \
172172
.bus_id = 0, \
173173
.num_data_lanes = 1, \
174-
.phy_clk_src = MIPI_DSI_PHY_CLK_SRC_DEFAULT, \
174+
.phy_clk_src = 0, \
175175
.lane_bit_rate_mbps = 480, \
176176
}
177177

0 commit comments

Comments
 (0)