nrf5/boards: Adjust heap end after increased .data usage in nrf52832 s132 linker script.
This commit is contained in:
parent
5580ac8200
commit
a01a3734f8
|
@ -22,6 +22,6 @@ _estack = ORIGIN(RAM) + LENGTH(RAM);
|
||||||
|
|
||||||
/* RAM extents for the garbage collector */
|
/* RAM extents for the garbage collector */
|
||||||
_ram_end = ORIGIN(RAM) + LENGTH(RAM);
|
_ram_end = ORIGIN(RAM) + LENGTH(RAM);
|
||||||
_heap_end = 0x20005000; /* tunable */
|
_heap_end = 0x20006000; /* tunable */
|
||||||
|
|
||||||
INCLUDE "boards/common.ld"
|
INCLUDE "boards/common.ld"
|
||||||
|
|
Loading…
Reference in New Issue