Modify memory.x to reserve only as much RAM for the softdevice as necessary
This commit is contained in:
parent
1a42e27189
commit
e5e1d7cede
2
memory.x
2
memory.x
@ -3,5 +3,5 @@ MEMORY
|
|||||||
/* NOTE 1 K = 1 KiB = 1024 bytes */
|
/* NOTE 1 K = 1 KiB = 1024 bytes */
|
||||||
/* These values correspond to the NRF52832 with SoftDevice S112 v7.x */
|
/* These values correspond to the NRF52832 with SoftDevice S112 v7.x */
|
||||||
FLASH : ORIGIN = 0x00000000 + 100K, LENGTH = 512K - 100K
|
FLASH : ORIGIN = 0x00000000 + 100K, LENGTH = 512K - 100K
|
||||||
RAM : ORIGIN = 0x20000000 + 30K, LENGTH = 64K - 30K
|
RAM : ORIGIN = 0x20000000 + 0x24b8, LENGTH = 64K - 0x24b8
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user