mirror of https://github.com/arendst/Tasmota.git
uDisplay Parallel display on Core3 (#21529)
This commit is contained in:
parent
f5ed2e0845
commit
ec696509b9
|
@ -21,6 +21,7 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- ESP32 slow response when using UDP as in emulation (#21470)
|
- ESP32 slow response when using UDP as in emulation (#21470)
|
||||||
|
- uDisplay Parallel display on Core3
|
||||||
|
|
||||||
## [14.0.0.2] 20240529
|
## [14.0.0.2] 20240529
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1289,6 +1289,7 @@ Renderer *uDisplay::Init(void) {
|
||||||
esp_lcd_i80_bus_config_t bus_config = {
|
esp_lcd_i80_bus_config_t bus_config = {
|
||||||
.dc_gpio_num = par_rs,
|
.dc_gpio_num = par_rs,
|
||||||
.wr_gpio_num = par_wr,
|
.wr_gpio_num = par_wr,
|
||||||
|
.clk_src = LCD_CLK_SRC_DEFAULT,
|
||||||
.bus_width = bus_width,
|
.bus_width = bus_width,
|
||||||
.max_transfer_bytes = 32768
|
.max_transfer_bytes = 32768
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue