diff --git a/CHANGELOG.md b/CHANGELOG.md index f352c4fc6..5020890e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ All notable changes to this project will be documented in this file. ### Fixed - ESP32 slow response when using UDP as in emulation (#21470) +- uDisplay Parallel display on Core3 ## [14.0.0.2] 20240529 ### Added diff --git a/lib/lib_display/UDisplay/uDisplay.cpp b/lib/lib_display/UDisplay/uDisplay.cpp index 3b4ed0449..e24b0ab42 100755 --- a/lib/lib_display/UDisplay/uDisplay.cpp +++ b/lib/lib_display/UDisplay/uDisplay.cpp @@ -1289,6 +1289,7 @@ Renderer *uDisplay::Init(void) { esp_lcd_i80_bus_config_t bus_config = { .dc_gpio_num = par_rs, .wr_gpio_num = par_wr, + .clk_src = LCD_CLK_SRC_DEFAULT, .bus_width = bus_width, .max_transfer_bytes = 32768 };