Repository: incubator-mynewt-core Updated Branches: refs/heads/develop 7ecd71024 -> 85e95dbeb
nrf51dk-16kbram - split ld specified too much ram. This linker script specified 32 kB ram; should be 16 kB. Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/85e95dbe Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/85e95dbe Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/85e95dbe Branch: refs/heads/develop Commit: 85e95dbeb3a4e0815fdc7e43f5a93914c1741f01 Parents: 7ecd710 Author: Christopher Collins <[email protected]> Authored: Thu Jan 19 14:34:49 2017 -0800 Committer: Christopher Collins <[email protected]> Committed: Thu Jan 19 14:34:49 2017 -0800 ---------------------------------------------------------------------- hw/bsp/nrf51dk-16kbram/split-nrf51dk-16kbram.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/85e95dbe/hw/bsp/nrf51dk-16kbram/split-nrf51dk-16kbram.ld ---------------------------------------------------------------------- diff --git a/hw/bsp/nrf51dk-16kbram/split-nrf51dk-16kbram.ld b/hw/bsp/nrf51dk-16kbram/split-nrf51dk-16kbram.ld index bd8c2be..3847e7c 100755 --- a/hw/bsp/nrf51dk-16kbram/split-nrf51dk-16kbram.ld +++ b/hw/bsp/nrf51dk-16kbram/split-nrf51dk-16kbram.ld @@ -20,7 +20,7 @@ OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm") MEMORY { FLASH (rx) : ORIGIN = 0x00023800, LENGTH = 0x1b800 - RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x8000 + RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x4000 } /* Linker script to place sections and symbol values. Should be used together
