Merge branch 'feature/add_missed_settings_for_bootloader_reserve_rtc_mem_for_c6_h2_v5.1' into 'release/v5.1'

esp_system (C6 & H2): Enables BOOTLOADER_RESERVE_RTC_MEM feature for bootloader (v5.1)

See merge request espressif/esp-idf!23402
This commit is contained in:
Zim Kalinowski
2023-05-15 16:02:35 +08:00
2 changed files with 3 additions and 3 deletions

View File

@@ -91,9 +91,9 @@ MEMORY
*/ */
#if CONFIG_ULP_COPROC_ENABLED #if CONFIG_ULP_COPROC_ENABLED
lp_ram_seg(RW) : org = 0x50000000 + CONFIG_ULP_COPROC_RESERVE_MEM, lp_ram_seg(RW) : org = 0x50000000 + CONFIG_ULP_COPROC_RESERVE_MEM,
len = 0x4000 - CONFIG_ULP_COPROC_RESERVE_MEM len = 0x4000 - CONFIG_ULP_COPROC_RESERVE_MEM - ESP_BOOTLOADER_RESERVE_RTC
#else #else
lp_ram_seg(RW) : org = 0x50000000 , len = 0x4000 lp_ram_seg(RW) : org = 0x50000000 , len = 0x4000 - ESP_BOOTLOADER_RESERVE_RTC
#endif // CONFIG_ULP_COPROC_ENABLED #endif // CONFIG_ULP_COPROC_ENABLED
} }

View File

@@ -89,7 +89,7 @@ MEMORY
/** /**
* lp ram memory (RWX). Persists over deep sleep. // ESP32H2-TODO IDF-6272 * lp ram memory (RWX). Persists over deep sleep. // ESP32H2-TODO IDF-6272
*/ */
lp_ram_seg(RW) : org = 0x50000000 , len = 0x1000 lp_ram_seg(RW) : org = 0x50000000 , len = 0x1000 - ESP_BOOTLOADER_RESERVE_RTC
} }