aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl5x-lp/memory.x
diff options
context:
space:
mode:
authorliebman <[email protected]>2025-12-18 15:04:45 -0800
committerliebman <[email protected]>2025-12-19 07:55:34 -0800
commit9008e4ca79a8cea093484f09d02c9ca67e7e2b1f (patch)
tree2ef61e05b4d687c8451253b930efae37c309e489 /examples/stm32wl5x-lp/memory.x
parent905bdfa7662c2ac5d2dfc81219c9704955473253 (diff)
low-power: stm32wl5x
Diffstat (limited to 'examples/stm32wl5x-lp/memory.x')
-rw-r--r--examples/stm32wl5x-lp/memory.x15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/stm32wl5x-lp/memory.x b/examples/stm32wl5x-lp/memory.x
new file mode 100644
index 000000000..4590867a8
--- /dev/null
+++ b/examples/stm32wl5x-lp/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 = 128
6 RAM (rwx) : ORIGIN = 0x20000080, LENGTH = 64K - 128
7}
8
9SECTIONS
10{
11 .shared_data :
12 {
13 *(.shared_data)
14 } > SHARED_RAM
15}