Преглед изворни кода

rtc: fix rtc slow memory layout on esp32s3

morris пре 5 година
родитељ
комит
d212e698d7
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      components/esp32s3/ld/esp32s3.ld

+ 2 - 2
components/esp32s3/ld/esp32s3.ld

@@ -70,14 +70,14 @@ MEMORY
   /**
   /**
    * RTC fast memory (same block as above), viewed from data bus
    * 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.
    * RTC slow memory (data accessible). Persists over deep sleep.
    * Start of RTC slow memory is reserved for ULP co-processor code + data, if enabled.
    * 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,
   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
 #if CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE