aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl5x-lp/memory.x
diff options
context:
space:
mode:
authorxoviat <[email protected]>2025-12-19 17:56:09 +0000
committerGitHub <[email protected]>2025-12-19 17:56:09 +0000
commitecb395e9334360994a9201c0ad3e7e921aa2d81a (patch)
tree77fe36797942a3f1bba868bb3fd7229077bef528 /examples/stm32wl5x-lp/memory.x
parent905bdfa7662c2ac5d2dfc81219c9704955473253 (diff)
parent941707372099ae5b82e8adf48ec4d0470a1642de (diff)
Merge pull request #5108 from liebman/low-power-stm32wl5x
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}