Skip to content
Open
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 @@ -17,6 +17,7 @@
//"${workspaceFolder}/Cargo.toml",
"${workspaceFolder}/examples/rt633/Cargo.toml",
"${workspaceFolder}/examples/rt685s-evk/Cargo.toml",
"${workspaceFolder}/examples/trustzone/Cargo.toml",
],
"rust-analyzer.cargo.features": [
// Comment out these features when working on the examples.
Expand Down
12 changes: 12 additions & 0 deletions examples/trustzone/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[target.thumbv8m.main-none-eabihf]
runner = 'probe-rs run --chip MIMXRT685SFVKB --no-catch-hardfault --no-catch-reset --preverify --verify'

rustflags = [
"-C", "linker=arm-none-eabi-ld",
]

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

[env]
DEFMT_LOG = "trace"
10 changes: 10 additions & 0 deletions examples/trustzone/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Generated by Cargo
# will have compiled files and executables
/debug
/target

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
Loading
Loading