aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl/memory.x
diff options
context:
space:
mode:
authorDion Dokter <[email protected]>2024-08-05 14:43:57 +0200
committerDion Dokter <[email protected]>2024-08-05 14:43:57 +0200
commit5884576b88e7ec7e26ec1c9b9f61e253cb0e5ea6 (patch)
tree72bb005130582742bc10f26e7eedbf635436831b /examples/stm32wl/memory.x
parent705a8fc38c0e5ef9cbd6bfaf95bca70fac5d9f81 (diff)
Updated WL examples to use new API
Diffstat (limited to 'examples/stm32wl/memory.x')
-rw-r--r--examples/stm32wl/memory.x15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/stm32wl/memory.x b/examples/stm32wl/memory.x
new file mode 100644
index 000000000..0298caa4b
--- /dev/null
+++ b/examples/stm32wl/memory.x
@@ -0,0 +1,15 @@
1MEMORY
2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 FLASH : ORIGIN = 0x08000000, LENGTH = 256K
5 SHARED_RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 64
6 RAM (rwx) : ORIGIN = 0x20000040, LENGTH = 64K - 64
7}
8
9SECTIONS
10{
11 .shared_data :
12 {
13 *(.shared_data)
14 } > SHARED_RAM
15} \ No newline at end of file