From 72895e7b718b100b87141b5d5bb5c921ae98cfba Mon Sep 17 00:00:00 2001 From: Li Shuai Date: Thu, 20 Nov 2025 11:00:42 +0800 Subject: [PATCH] change(esp_hw_support): modify the default value of the kconfig option for place peripheral control module into iram to y --- components/esp_hw_support/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_hw_support/Kconfig b/components/esp_hw_support/Kconfig index a2d5fcc245..24c349b768 100644 --- a/components/esp_hw_support/Kconfig +++ b/components/esp_hw_support/Kconfig @@ -236,7 +236,7 @@ menu "Hardware Settings" menu "Peripheral Control" config ESP_PERIPH_CTRL_FUNC_IN_IRAM bool "Place peripheral control functions into IRAM" - default n + default y help Place peripheral control functions (e.g. periph_module_reset) into IRAM, so that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.