From 3b2f30ec357ea4b2576b316d0f6f3809c34e338c Mon Sep 17 00:00:00 2001 From: Chen Chen Date: Tue, 21 Apr 2026 16:43:07 +0800 Subject: [PATCH] fix(lcd): lower the APLL test frequency to pass the test --- components/esp_lcd/test_apps/rgb_lcd/main/test_rgb_panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_lcd/test_apps/rgb_lcd/main/test_rgb_panel.c b/components/esp_lcd/test_apps/rgb_lcd/main/test_rgb_panel.c index 1d3f90ad9f..2fd3da4f44 100644 --- a/components/esp_lcd/test_apps/rgb_lcd/main/test_rgb_panel.c +++ b/components/esp_lcd/test_apps/rgb_lcd/main/test_rgb_panel.c @@ -308,7 +308,7 @@ TEST_CASE("lcd_rgb_panel_use_apll", "[lcd]") printf("set APLL frequency\r\n"); uint32_t real_freq = 0; - TEST_ESP_OK(esp_clk_tree_src_set_freq_hz(SOC_MOD_CLK_APLL, 160 * 1000 * 1000, &real_freq)); + TEST_ESP_OK(esp_clk_tree_src_set_freq_hz(SOC_MOD_CLK_APLL, 120 * 1000 * 1000, &real_freq)); printf("APLL frequency: %"PRIu32" Hz\r\n", real_freq); printf("initialize RGB panel with stream mode\r\n");