Skip to content

Commit ba70815

Browse files
committed
0.0.1
0 parents  commit ba70815

16 files changed

+1690
-0
lines changed

.cargo/config.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
2+
runner = "elf2uf2-rs -d"
3+
# runner = "probe-run --chip RP2040"
4+
5+
rustflags = [
6+
"-C", "linker=flip-link",
7+
"-C", "link-arg=--nmagic",
8+
"-C", "link-arg=-Tlink.x",
9+
"-C", "link-arg=-Tdefmt.x",
10+
"-C", "inline-threshold=5",
11+
"-C", "no-vectorize-loops",
12+
]
13+
14+
[build]
15+
target = "thumbv6m-none-eabi"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"rust-analyzer.check.allTargets": false,
3+
"rust-analyzer.cargo.target": "thumbv6m-none-eabi"
4+
}

0 commit comments

Comments
 (0)