Skip to content

Commit 565e944

Browse files
authored
a fix for build with Arduino Core 3.3.4
1 parent 92b790e commit 565e944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/drivers/bus/esp_panel_bus_dsi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void BusDSI::Config::convertPartialToFull()
2727
host = HostFullConfig{
2828
.bus_id = HOST_ID_DEFAULT,
2929
.num_data_lanes = static_cast<uint8_t>(config.num_data_lanes),
30-
.phy_clk_src = MIPI_DSI_PHY_CLK_SRC_DEFAULT,
30+
.phy_clk_src = static_cast<mipi_dsi_phy_pllref_clock_source_t>(MIPI_DSI_PHY_CLK_SRC_DEFAULT),
3131
.lane_bit_rate_mbps = static_cast<uint32_t>(config.lane_bit_rate_mbps),
3232
};
3333
}

0 commit comments

Comments
 (0)