Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
"platform/dev-imxrt/Cargo.toml",
"platform/dev-npcx/Cargo.toml",
"platform/dev-qemu/Cargo.toml",
"platform/winhec-demo/Cargo.toml",
]
}
21 changes: 21 additions & 0 deletions platform/winhec-demo/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[target.thumbv8m.main-none-eabihf]
runner = 'probe-rs run --chip MIMXRT685SFVKB --preverify --verify'

rustflags = [
"-C",
"linker=flip-link",
"-C",
"link-arg=-Tlink.x",
"-C",
"link-arg=-Tdefmt.x",
# This is needed if your flash or ram addresses are not aligned to 0x10000 in memory.x
# See https://github.com/rust-embedded/cortex-m-quickstart/pull/95
"-C",
"link-arg=--nmagic",
]

[build]
target = "thumbv8m.main-none-eabihf" # Cortex-M33

[env]
DEFMT_LOG = "trace"
Loading
Loading