We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc5a83 commit 73e882fCopy full SHA for 73e882f
soc/espressif/esp32h2/default.ld
@@ -68,7 +68,7 @@ MEMORY
68
drom0_0_seg(R): org = DROM_SEG_ORG, len = DROM_SEG_LEN
69
70
lp_ram_seg(RW): org = LPSRAM_IRAM_START,
71
- len = 0x4000 - CONFIG_RESERVE_RTC_MEM
+ len = LPSRAM_SIZE - CONFIG_RESERVE_RTC_MEM
72
73
/* We reduced the size of lp_ram_seg by CONFIG_RESERVE_RTC_MEM value.
74
It reserves the amount of LP memory that we use for this memory segment.
@@ -78,7 +78,7 @@ MEMORY
78
The aim of this is to keep data that will not be moved around and have a fixed address.
79
*/
80
#if (CONFIG_RESERVE_RTC_MEM > 0)
81
- lp_reserved_seg(RW) : org = LPSRAM_IRAM_START + 0x4000 - CONFIG_RESERVE_RTC_MEM,
+ lp_reserved_seg(RW) : org = LPSRAM_IRAM_START + LPSRAM_SIZE - CONFIG_RESERVE_RTC_MEM,
82
len = CONFIG_RESERVE_RTC_MEM
83
#endif
84
0 commit comments