From dafcb9a883d66f7b6dddae2092e8964dfcc9e0ff Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Thu, 23 Jun 2022 12:28:09 +0800 Subject: [PATCH] apptrace: move all apptrace related functions to IRAM Closes: https://github.com/espressif/esp-idf/issues/9131 --- components/app_trace/linker.lf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/app_trace/linker.lf b/components/app_trace/linker.lf index 3358ce10be..92a139ea56 100644 --- a/components/app_trace/linker.lf +++ b/components/app_trace/linker.lf @@ -3,6 +3,10 @@ archive: libapp_trace.a entries: app_trace (noflash) app_trace_util (noflash) + if APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE: + app_trace_membufs_proto (noflash) + if APPTRACE_DEST_JTAG = y: + port (noflash) if APPTRACE_SV_ENABLE = y: SEGGER_SYSVIEW (noflash) SEGGER_RTT_esp (noflash)