aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f1_bluepill_blinky/memory.x
diff options
context:
space:
mode:
authorrnld wbr <ronaldxweber@gmail.com>2025-01-15 20:11:27 +0100
committerGitHub <noreply@github.com>2025-01-15 19:11:27 +0000
commit6f6a56387c22b8a4c5d526d407e2249a7ef7a538 (patch)
treefe883d794be7fb6b828da38531f8d8dda221afcd /examples/stm32f1_bluepill_blinky/memory.x
parent1a1237690cf676733579ffde0f507a00950e474e (diff)
Add blinky example for STM32F1 bluepill board (#1007)
Code taken from stm32f3_blinky example with LED port adapted to bluepill board. Port initialization and README from v1 rtic-examples with slight edits.
Diffstat (limited to 'examples/stm32f1_bluepill_blinky/memory.x')
-rw-r--r--examples/stm32f1_bluepill_blinky/memory.x5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/stm32f1_bluepill_blinky/memory.x b/examples/stm32f1_bluepill_blinky/memory.x
new file mode 100644
index 0000000..d1d7841
--- /dev/null
+++ b/examples/stm32f1_bluepill_blinky/memory.x
@@ -0,0 +1,5 @@
+MEMORY
+{
+ FLASH : ORIGIN = 0x08000000, LENGTH = 64K
+ RAM : ORIGIN = 0x20000000, LENGTH = 20K
+}