aboutsummaryrefslogtreecommitdiff
path: root/examples/memory.x
diff options
context:
space:
mode:
authorFelipe Balbi <[email protected]>2025-11-17 16:34:11 -0800
committerGitHub <[email protected]>2025-11-17 16:34:11 -0800
commit62e297c130ac26afe4d7d5752bb79709bd370e39 (patch)
tree23d51eaf7d8b366c07f0d19a44f86ed2a1c76fde /examples/memory.x
parentbf3ae8e4d69ef2e2ecfdf0b48734d9c91637eb16 (diff)
Allow writing binary to flash (#20)
Turns out probe-rs works out of the box. Signed-off-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'examples/memory.x')
-rw-r--r--examples/memory.x4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/memory.x b/examples/memory.x
index f4263a412..315ced58a 100644
--- a/examples/memory.x
+++ b/examples/memory.x
@@ -1,5 +1,5 @@
1MEMORY 1MEMORY
2{ 2{
3 FLASH : ORIGIN = 0x20000000, LENGTH = 64K 3 FLASH : ORIGIN = 0x00000000, LENGTH = 1M
4 RAM : ORIGIN = 0x20010000, LENGTH = 64K 4 RAM : ORIGIN = 0x20000000, LENGTH = 128K
5} 5}