From ebee1553ae4395166b14b02dc3954c46b12f7c50 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Tue, 14 Oct 2025 23:31:13 +0200 Subject: [PATCH] Increase max frequency to match ESP32-C3 processor --- firmware/esp32/main/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/esp32/main/main.cpp b/firmware/esp32/main/main.cpp index 36f9339..f2d5299 100644 --- a/firmware/esp32/main/main.cpp +++ b/firmware/esp32/main/main.cpp @@ -39,7 +39,7 @@ extern "C" void app_main(void) ESP_LOGI(TAG, "Hello from user land – bootloader worked yay!"); static const esp_pm_config_t pm_cfg = { - .max_freq_mhz = 80, + .max_freq_mhz = 160, .min_freq_mhz = 10, .light_sleep_enable = true };