Merge pull request #4071 from felipebalbi/update-mimxrt600-fcb

Convert tabs into spaces in `memory.x` and update mimxrt600 fcb
This commit is contained in:
James Munns 2025-04-10 17:20:49 +00:00 committed by GitHub
commit efde7e2841
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 27 deletions

View File

@ -18,7 +18,7 @@ embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["de
embedded-hal-1 = { package = "embedded-hal", version = "1.0" } embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
embedded-hal-async = "1.0.0" embedded-hal-async = "1.0.0"
mimxrt600-fcb = "0.1.0" mimxrt600-fcb = "0.2.2"
panic-probe = { version = "0.3", features = ["print-defmt"] } panic-probe = { version = "0.3", features = ["print-defmt"] }
rand = { version = "0.8.5", default-features = false } rand = { version = "0.8.5", default-features = false }

View File

@ -1,34 +1,34 @@
MEMORY { MEMORY {
OTFAD : ORIGIN = 0x08000000, LENGTH = 256 OTFAD : ORIGIN = 0x08000000, LENGTH = 256
FCB : ORIGIN = 0x08000400, LENGTH = 512 FCB : ORIGIN = 0x08000400, LENGTH = 512
BIV : ORIGIN = 0x08000600, LENGTH = 4 BIV : ORIGIN = 0x08000600, LENGTH = 4
KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K
FLASH : ORIGIN = 0x08001000, LENGTH = 1M FLASH : ORIGIN = 0x08001000, LENGTH = 1M
RAM : ORIGIN = 0x20080000, LENGTH = 1536K RAM : ORIGIN = 0x20080000, LENGTH = 1536K
} }
SECTIONS { SECTIONS {
.otfad : { .otfad : {
. = ALIGN(4); . = ALIGN(4);
KEEP(* (.otfad)) KEEP(* (.otfad))
. = ALIGN(4); . = ALIGN(4);
} > OTFAD } > OTFAD
.fcb : { .fcb : {
. = ALIGN(4); . = ALIGN(4);
KEEP(* (.fcb)) KEEP(* (.fcb))
. = ALIGN(4); . = ALIGN(4);
} > FCB } > FCB
.biv : { .biv : {
. = ALIGN(4); . = ALIGN(4);
KEEP(* (.biv)) KEEP(* (.biv))
. = ALIGN(4); . = ALIGN(4);
} > BIV } > BIV
.keystore : { .keystore : {
. = ALIGN(4); . = ALIGN(4);
KEEP(* (.keystore)) KEEP(* (.keystore))
. = ALIGN(4); . = ALIGN(4);
} > KEYSTORE } > KEYSTORE
} }