From 277e277690497bb43f64b577d0672f6a79f73dbf Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Thu, 18 Mar 2021 17:48:31 +0530 Subject: [PATCH] esp32c3: correct name for RTC memory region in heap --- components/soc/esp32c3/soc_memory_layout.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/soc/esp32c3/soc_memory_layout.c b/components/soc/esp32c3/soc_memory_layout.c index f9616cf950..ba0ae819cb 100644 --- a/components/soc/esp32c3/soc_memory_layout.c +++ b/components/soc/esp32c3/soc_memory_layout.c @@ -42,7 +42,8 @@ const soc_memory_type_desc_t soc_memory_types[] = { { "D/IRAM", { 0, MALLOC_CAP_DMA | MALLOC_CAP_8BIT | MALLOC_CAP_INTERNAL | MALLOC_CAP_DEFAULT, MALLOC_CAP_32BIT | MALLOC_CAP_EXEC }, true, false}, // Type 3: IRAM { "IRAM", { MALLOC_CAP_EXEC | MALLOC_CAP_32BIT | MALLOC_CAP_INTERNAL, 0, 0 }, false, false}, - { "FAKEDRAM", { MALLOC_CAP_8BIT|MALLOC_CAP_DEFAULT, MALLOC_CAP_INTERNAL|MALLOC_CAP_32BIT, 0 }, false, false}, + // Type 4: RTCRAM + { "RTCRAM", { MALLOC_CAP_8BIT|MALLOC_CAP_DEFAULT, MALLOC_CAP_INTERNAL|MALLOC_CAP_32BIT, 0 }, false, false}, }; #ifdef CONFIG_ESP_SYSTEM_MEMPROT_FEATURE