aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/ARM/LPC214x
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-08 10:01:14 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-08 10:01:14 +0000
commit26eabc0db1e61d941bd60193c4c3705b8ff383c4 (patch)
tree05e72d27704a0b7de9341f3c5d088e2b19d60688 /os/ports/GCC/ARM/LPC214x
parentcb54f8224b4ed312512149a2fa9272674e3fb1a5 (diff)
downloadChibiOS-26eabc0db1e61d941bd60193c4c3705b8ff383c4.tar.gz
ChibiOS-26eabc0db1e61d941bd60193c4c3705b8ff383c4.tar.bz2
ChibiOS-26eabc0db1e61d941bd60193c4c3705b8ff383c4.zip
Centralyzed ARM scatter files too, new stack checking implemented in ARM port.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3210 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/ARM/LPC214x')
-rw-r--r--os/ports/GCC/ARM/LPC214x/ld/LPC2148.ld7
1 files changed, 4 insertions, 3 deletions
diff --git a/os/ports/GCC/ARM/LPC214x/ld/LPC2148.ld b/os/ports/GCC/ARM/LPC214x/ld/LPC2148.ld
index 40683d14e..c94daa808 100644
--- a/os/ports/GCC/ARM/LPC214x/ld/LPC2148.ld
+++ b/os/ports/GCC/ARM/LPC214x/ld/LPC2148.ld
@@ -101,7 +101,8 @@ SECTIONS
}
PROVIDE(end = .);
-_end = .;
+_end = .;
-__heap_base__ = _end;
-__heap_end__ = __ram_end__ - __stacks_total_size__;
+__heap_base__ = _end;
+__heap_end__ = __ram_end__ - __stacks_total_size__;
+__main_thread_stack_base__ = __ram_end__ - __stacks_total_size__;