Skip to content

Commit 160ec13

Browse files
authored
Fix uDisplay DSI compile with IDF 5.4 / 5.5 based Arduino frameworks (#24110)
1 parent c0f1be5 commit 160ec13

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

lib/lib_display/UDisplay/uDisplay_DSI_panel.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ DSIPanel::DSIPanel(const DSIPanelConfig& config)
4343
esp_lcd_dsi_bus_config_t bus_config = {
4444
.bus_id = 0,
4545
.num_data_lanes = cfg.dsi_lanes,
46-
.phy_clk_src = MIPI_DSI_PHY_CLK_SRC_DEFAULT,
4746
.lane_bit_rate_mbps = cfg.lane_speed_mbps
4847
};
4948
ret = esp_lcd_new_dsi_bus(&bus_config, &dsi_bus);

lib/lib_display/UDisplay/uDisplay_RGB_panel.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
#include <algorithm>
1010
#include <rom/cache.h>
1111

12-
extern int CACHE_WRITEBACK_ADDR(uint32_t addr, uint32_t size);
13-
1412
RGBPanel::RGBPanel(const esp_lcd_rgb_panel_config_t *config) {
1513
ESP_ERROR_CHECK(esp_lcd_new_rgb_panel(config, &panel_handle));
1614
ESP_ERROR_CHECK(esp_lcd_panel_reset(panel_handle));

0 commit comments

Comments
 (0)