Merge branch 'fix/fix_i80lcd_stuck_on_high_pckl_v5.3' into 'release/v5.3'

fix(i80_lcd): fix dma stuck with high pclk (v5.3)

See merge request espressif/esp-idf!45856
This commit is contained in:
morris
2026-02-12 23:04:43 +08:00
@@ -703,9 +703,9 @@ static void lcd_start_transaction(esp_lcd_i80_bus_t *bus, lcd_i80_trans_descript
if (trans_desc->data) { // some specific LCD commands can have no parameters
gdma_start(bus->dma_chan, gdma_link_get_head_addr(bus->dma_link));
// delay 1us is sufficient for DMA to pass data to LCD FIFO
// delay 4us is sufficient for DMA to pass data to LCD FIFO
// in fact, this is only needed when LCD pixel clock is set too high
esp_rom_delay_us(1);
esp_rom_delay_us(4);
}
lcd_ll_start(bus->hal.dev);
}