From fe64cf3982d3c00e1f6b5831731de993f31525da Mon Sep 17 00:00:00 2001 From: Cristian Funes Date: Tue, 8 Oct 2024 07:06:37 -0300 Subject: [PATCH 1/2] fix(log): Modified linker script to move functions from flash to iram --- components/log/linker.lf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/log/linker.lf b/components/log/linker.lf index 5339affc8c..ecd3478ff6 100644 --- a/components/log/linker.lf +++ b/components/log/linker.lf @@ -2,6 +2,8 @@ archive: liblog.a entries: log_write:esp_log_write (noflash) + log_write:esp_log_level_get_timeout (noflash) + log_write:esp_log_writev (noflash) log_timestamp:esp_log_timestamp (noflash) log_timestamp:esp_log_early_timestamp (noflash) log_lock (noflash) From d73ed3f1d8835972c2e9fc4825dc1c5638346468 Mon Sep 17 00:00:00 2001 From: Guillaume Souchere Date: Wed, 9 Oct 2024 10:18:14 +0200 Subject: [PATCH 2/2] fix(log): fix file name for esp_log_level_get_timeout --- components/log/linker.lf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/log/linker.lf b/components/log/linker.lf index ecd3478ff6..eb033aae4f 100644 --- a/components/log/linker.lf +++ b/components/log/linker.lf @@ -2,8 +2,8 @@ archive: liblog.a entries: log_write:esp_log_write (noflash) - log_write:esp_log_level_get_timeout (noflash) log_write:esp_log_writev (noflash) + tag_log_level:esp_log_level_get_timeout (noflash) log_timestamp:esp_log_timestamp (noflash) log_timestamp:esp_log_early_timestamp (noflash) log_lock (noflash)