From 70e1131b4b0012a2bc3f99450622eb0ca09d80e1 Mon Sep 17 00:00:00 2001 From: Wu Jian Gang Date: Wed, 28 Sep 2016 12:27:25 +0800 Subject: [PATCH] esp32: add TRACEMEM_RESERVE_DRAM config this configaration is missed when rebase --- components/esp32/Kconfig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/esp32/Kconfig b/components/esp32/Kconfig index 3770966a08..b5754deed5 100644 --- a/components/esp32/Kconfig +++ b/components/esp32/Kconfig @@ -63,6 +63,12 @@ config MEMMAP_TRACEMEM of memory that can't be used for general purposes anymore. Disable this if you do not know what this is. +# Memory to reverse for trace, used in linker script +config TRACEMEM_RESERVE_DRAM + hex + default 0x8000 if MEMMAP_TRACEMEM + default 0x0 + config MEMMAP_SPISRAM bool "Use external SPI SRAM chip as main memory" default "n"