Skip to content

Commit

Permalink
cpu/nrf52/ldscripts: extend script for multislot usage
Browse files Browse the repository at this point in the history
  • Loading branch information
kYc0o committed Jul 17, 2017
1 parent 76ae1a9 commit 7137b7d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cpu/nrf52/ldscripts/nrf52832xxaa.ld
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@
* @}
*/

rom_length = 512K;

INCLUDE multislot.ld

MEMORY
{
rom (rx) : ORIGIN = 0x00000000, LENGTH = 512K
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
rom (rx) : ORIGIN = 0x00000000 + boot_offset, LENGTH = rom_length
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
}

INCLUDE cortexm_base.ld

0 comments on commit 7137b7d

Please sign in to comment.