aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-04-10 17:20:49 +0000
committerGitHub <[email protected]>2025-04-10 17:20:49 +0000
commitefde7e2841a993c996b3e90baa20922f3b41226c (patch)
tree56d6352ee61ca41b5e57b69999932686158c64dc
parentc7ab6a6ef79366bc83c43205b16c5b9064501586 (diff)
parent05606d03804b431d014fa7cde23c2058b1ad2648 (diff)
Merge pull request #4071 from felipebalbi/update-mimxrt600-fcb
Convert tabs into spaces in `memory.x` and update mimxrt600 fcb
-rw-r--r--examples/mimxrt6/Cargo.toml2
-rw-r--r--examples/mimxrt6/memory.x52
2 files changed, 27 insertions, 27 deletions
diff --git a/examples/mimxrt6/Cargo.toml b/examples/mimxrt6/Cargo.toml
index 0e4a1ee36..8fc510c47 100644
--- a/examples/mimxrt6/Cargo.toml
+++ b/examples/mimxrt6/Cargo.toml
@@ -18,7 +18,7 @@ embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["de
18embedded-hal-1 = { package = "embedded-hal", version = "1.0" } 18embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
19embedded-hal-async = "1.0.0" 19embedded-hal-async = "1.0.0"
20 20
21mimxrt600-fcb = "0.1.0" 21mimxrt600-fcb = "0.2.2"
22panic-probe = { version = "0.3", features = ["print-defmt"] } 22panic-probe = { version = "0.3", features = ["print-defmt"] }
23rand = { version = "0.8.5", default-features = false } 23rand = { version = "0.8.5", default-features = false }
24 24
diff --git a/examples/mimxrt6/memory.x b/examples/mimxrt6/memory.x
index 5ea82fd71..6c4410f57 100644
--- a/examples/mimxrt6/memory.x
+++ b/examples/mimxrt6/memory.x
@@ -1,34 +1,34 @@
1MEMORY { 1MEMORY {
2 OTFAD : ORIGIN = 0x08000000, LENGTH = 256 2 OTFAD : ORIGIN = 0x08000000, LENGTH = 256
3 FCB : ORIGIN = 0x08000400, LENGTH = 512 3 FCB : ORIGIN = 0x08000400, LENGTH = 512
4 BIV : ORIGIN = 0x08000600, LENGTH = 4 4 BIV : ORIGIN = 0x08000600, LENGTH = 4
5 KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K 5 KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K
6 FLASH : ORIGIN = 0x08001000, LENGTH = 1M 6 FLASH : ORIGIN = 0x08001000, LENGTH = 1M
7 RAM : ORIGIN = 0x20080000, LENGTH = 1536K 7 RAM : ORIGIN = 0x20080000, LENGTH = 1536K
8} 8}
9 9
10SECTIONS { 10SECTIONS {
11 .otfad : { 11 .otfad : {
12 . = ALIGN(4); 12 . = ALIGN(4);
13 KEEP(* (.otfad)) 13 KEEP(* (.otfad))
14 . = ALIGN(4); 14 . = ALIGN(4);
15 } > OTFAD 15 } > OTFAD
16 16
17 .fcb : { 17 .fcb : {
18 . = ALIGN(4); 18 . = ALIGN(4);
19 KEEP(* (.fcb)) 19 KEEP(* (.fcb))
20 . = ALIGN(4); 20 . = ALIGN(4);
21 } > FCB 21 } > FCB
22 22
23 .biv : { 23 .biv : {
24 . = ALIGN(4); 24 . = ALIGN(4);
25 KEEP(* (.biv)) 25 KEEP(* (.biv))
26 . = ALIGN(4); 26 . = ALIGN(4);
27 } > BIV 27 } > BIV
28 28
29 .keystore : { 29 .keystore : {
30 . = ALIGN(4); 30 . = ALIGN(4);
31 KEEP(* (.keystore)) 31 KEEP(* (.keystore))
32 . = ALIGN(4); 32 . = ALIGN(4);
33 } > KEYSTORE 33 } > KEYSTORE
34} 34}