Reduce SRAM usage of audio tasks

This commit is contained in:
Terrence
2025-07-25 08:27:12 +08:00
parent e90e540933
commit d38763d5ef
4 changed files with 21 additions and 11 deletions

View File

@@ -22,6 +22,7 @@ OledDisplay::OledDisplay(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handl
ESP_LOGI(TAG, "Initialize LVGL");
lvgl_port_cfg_t port_cfg = ESP_LVGL_PORT_INIT_CONFIG();
port_cfg.task_priority = 1;
port_cfg.task_stack = 6144;
port_cfg.timer_period_ms = 50;
lvgl_port_init(&port_cfg);