diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-24 14:48:06 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-24 14:48:06 -0800 |
commit | baba08bff913963cd10a227ab765b31cdcc96ab0 (patch) | |
tree | 59fa570428be3c1e7dd06da30bc0ed1ad5b940b9 /stm/stm32f405.ld | |
parent | 41d02b654e5c844f85fbb79283eaebf35af60fbb (diff) | |
parent | a215b09c0dc29b82161092e92ea2e5e004d79468 (diff) | |
download | micropython-baba08bff913963cd10a227ab765b31cdcc96ab0.tar.gz micropython-baba08bff913963cd10a227ab765b31cdcc96ab0.zip |
Merge pull request #218 from iabdalkader/master
Move file obj to separate module
Diffstat (limited to 'stm/stm32f405.ld')
-rw-r--r-- | stm/stm32f405.ld | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stm/stm32f405.ld b/stm/stm32f405.ld index c19e6a1c19..231dbcbe70 100644 --- a/stm/stm32f405.ld +++ b/stm/stm32f405.ld @@ -19,6 +19,10 @@ _minimum_heap_size = 16K; /* top end of the stack */ _estack = ORIGIN(RAM) + LENGTH(RAM); +_ram_start = 0x20000000; +_ram_end = 0x20020000; +_heap_end = 0x2001c000; + /* define output sections */ SECTIONS { |