aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf52840-edf/memory.x
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-04-16 17:58:45 +0200
committerDario Nieuwenhuis <[email protected]>2025-09-11 14:45:06 +0200
commit0cb1ffe0258380a3dd25c1037fdfb6ceca3149d9 (patch)
tree9757a4f14c47412d8eed7a2d67ee7732f06c6cfe /examples/nrf52840-edf/memory.x
parent0e28ba1091257111f71b76a664d7038dbfcf9b5e (diff)
Add EDF example
Diffstat (limited to 'examples/nrf52840-edf/memory.x')
-rw-r--r--examples/nrf52840-edf/memory.x12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/nrf52840-edf/memory.x b/examples/nrf52840-edf/memory.x
new file mode 100644
index 000000000..15b492bce
--- /dev/null
+++ b/examples/nrf52840-edf/memory.x
@@ -0,0 +1,12 @@
1MEMORY
2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 FLASH : ORIGIN = 0x00000000, LENGTH = 1024K
5 RAM : ORIGIN = 0x20000000, LENGTH = 256K
6
7 /* These values correspond to the NRF52840 with Softdevices S140 7.3.0 */
8 /*
9 FLASH : ORIGIN = 0x00027000, LENGTH = 868K
10 RAM : ORIGIN = 0x20020000, LENGTH = 128K
11 */
12}