soc: esp32s3: fix heap_sentry reference

Fix heap_sentry value to point final useful stack area.

Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
This commit is contained in:
Sylvio Alves 2023-08-15 11:04:58 -03:00 committed by Carles Cufí
parent d0d3f1446a
commit bcb59b8f46

View file

@ -468,7 +468,6 @@ SECTIONS
. = ALIGN(4);
_end = ABSOLUTE(.);
_heap_sentry = .;
__data_end = ABSOLUTE(.);
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
@ -635,6 +634,8 @@ SECTIONS
#include <zephyr/linker/intlist.ld>
#endif
_heap_sentry = 0x3fceb910;
#include <zephyr/linker/debug-sections.ld>
.xtensa.info 0 : { *(.xtensa.info) }