diff options
| author | James Munns <[email protected]> | 2025-04-10 17:20:49 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-10 17:20:49 +0000 |
| commit | efde7e2841a993c996b3e90baa20922f3b41226c (patch) | |
| tree | 56d6352ee61ca41b5e57b69999932686158c64dc | |
| parent | c7ab6a6ef79366bc83c43205b16c5b9064501586 (diff) | |
| parent | 05606d03804b431d014fa7cde23c2058b1ad2648 (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.toml | 2 | ||||
| -rw-r--r-- | examples/mimxrt6/memory.x | 52 |
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 | |||
| 18 | embedded-hal-1 = { package = "embedded-hal", version = "1.0" } | 18 | embedded-hal-1 = { package = "embedded-hal", version = "1.0" } |
| 19 | embedded-hal-async = "1.0.0" | 19 | embedded-hal-async = "1.0.0" |
| 20 | 20 | ||
| 21 | mimxrt600-fcb = "0.1.0" | 21 | mimxrt600-fcb = "0.2.2" |
| 22 | panic-probe = { version = "0.3", features = ["print-defmt"] } | 22 | panic-probe = { version = "0.3", features = ["print-defmt"] } |
| 23 | rand = { version = "0.8.5", default-features = false } | 23 | rand = { 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 @@ | |||
| 1 | MEMORY { | 1 | MEMORY { |
| 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 | ||
| 10 | SECTIONS { | 10 | SECTIONS { |
| 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 | } |
