aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/ports
diff options
context:
space:
mode:
authorsdalu <sdalu@sdalu.com>2016-02-02 00:42:30 +0100
committersdalu <sdalu@sdalu.com>2016-02-02 00:42:30 +0100
commit4bf25efd247d9f79128db90f939d8f464ca0d636 (patch)
treecc09dbb31c150019170a8933a81e27bb6bb345e3 /os/common/ports
parent2bc5a485a970f2ea1a3c7d7b853c6b877fea9a83 (diff)
downloadChibiOS-Contrib-4bf25efd247d9f79128db90f939d8f464ca0d636.tar.gz
ChibiOS-Contrib-4bf25efd247d9f79128db90f939d8f464ca0d636.tar.bz2
ChibiOS-Contrib-4bf25efd247d9f79128db90f939d8f464ca0d636.zip
Added missing HEAP_RAM definition
linker was generating a warning, and tests were failing on "Heap, allocation and fragmentation test"
Diffstat (limited to 'os/common/ports')
-rw-r--r--os/common/ports/ARMCMx/compilers/GCC/ld/NRF51822.ld2
1 files changed, 2 insertions, 0 deletions
diff --git a/os/common/ports/ARMCMx/compilers/GCC/ld/NRF51822.ld b/os/common/ports/ARMCMx/compilers/GCC/ld/NRF51822.ld
index ba12060..b8dbc10 100644
--- a/os/common/ports/ARMCMx/compilers/GCC/ld/NRF51822.ld
+++ b/os/common/ports/ARMCMx/compilers/GCC/ld/NRF51822.ld
@@ -44,5 +44,7 @@ REGION_ALIAS("DATA_RAM", ram0);
/* RAM region to be used for BSS segment.*/
REGION_ALIAS("BSS_RAM", ram0);
+/* RAM region to be used for HEAP segment.*/
+REGION_ALIAS("HEAP_RAM", ram0);
INCLUDE rules.ld