From d212e698d7dd83beb0aeb0366eaf11faf126af39 Mon Sep 17 00:00:00 2001 From: morris Date: Tue, 2 Feb 2021 12:06:12 +0800 Subject: [PATCH] rtc: fix rtc slow memory layout on esp32s3 --- components/esp32s3/ld/esp32s3.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp32s3/ld/esp32s3.ld b/components/esp32s3/ld/esp32s3.ld index e35dd1c25b..821bf5f43a 100644 --- a/components/esp32s3/ld/esp32s3.ld +++ b/components/esp32s3/ld/esp32s3.ld @@ -70,14 +70,14 @@ MEMORY /** * RTC fast memory (same block as above), viewed from data bus */ - rtc_data_seg(RW) : org = 0x3ff80000, len = 0x2000 + rtc_data_seg(RW) : org = 0x600fe000, len = 0x2000 /** * RTC slow memory (data accessible). Persists over deep sleep. * Start of RTC slow memory is reserved for ULP co-processor code + data, if enabled. */ rtc_slow_seg(RW) : org = 0x50000000 + CONFIG_ESP32S3_ULP_COPROC_RESERVE_MEM, - len = 0x1000 - CONFIG_ESP32S3_ULP_COPROC_RESERVE_MEM + len = 0x2000 - CONFIG_ESP32S3_ULP_COPROC_RESERVE_MEM } #if CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE