Skip to content

Commit 58ea91a

Browse files
committed
Initial skeleton for ec-slimloader
1 parent dd3815c commit 58ea91a

File tree

12 files changed

+328723
-0
lines changed

12 files changed

+328723
-0
lines changed

.cargo/config.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[target.thumbv8m.main-none-eabihf]
2+
# runner = 'probe-rs run --chip-description-path .vscode/rt633s.yaml --chip MIMXRT633SFFOB'
3+
runner = 'probe-rs run --chip MIMXRT685SFVKB'
4+
5+
rustflags = [
6+
"-C",
7+
"linker=flip-link",
8+
"-C",
9+
"link-arg=-Tdefmt.x",
10+
# This is needed if your flash or ram addresses are not aligned to 0x10000 in memory.x
11+
# See https://github.com/rust-embedded/cortex-m-quickstart/pull/95
12+
"-C",
13+
"link-arg=--nmagic",
14+
]
15+
16+
[build]
17+
target = "thumbv8m.main-none-eabihf" # Cortex-M33
18+
19+
[env]
20+
DEFMT_LOG = "trace"

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ Cargo.lock
1212

1313
# MSVC Windows builds of rustc generate these, which store debugging information
1414
*.pdb
15+
16+
17+
# Added by cargo
18+
19+
/target

0 commit comments

Comments
 (0)