Linker rtc_slow_seg(RW)
Posted: Sat Oct 14, 2017 9:47 am
Hello
In esp32_out.ld we have:
The 512 comes from desired reserve amount.
Now why total len is
and not ?
If I understand right, the RTC_SLOW_SEG is 8K not 4K.
Am I missing something?
Thanks
In esp32_out.ld we have:
Code: Select all
/* 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 + 512,
len = 0x1000 - 512
Now why total len is
Code: Select all
len = 0x1000 - 512
Code: Select all
len = 0x2000 - 512
Am I missing something?
Thanks