Skip to content

Commit d058a22

Browse files
committed
generate enums for other families
1 parent a0971b2 commit d058a22

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+59166
-3587
lines changed

.cargo/config

Lines changed: 0 additions & 11 deletions
This file was deleted.

.cargo/config.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[target.thumbv6m-none-eabi]
2+
rustflags = [
3+
"-C", "link-arg=-Tlink.x",
4+
]
5+
6+
[target.thumbv7m-none-eabi]
7+
rustflags = [
8+
"-C", "link-arg=-Tlink.x",
9+
]
10+
11+
[target.thumbv7em-none-eabi]
12+
rustflags = [
13+
"-C", "link-arg=-Tlink.x",
14+
]
15+
16+
[target.thumbv7em-none-eabihf]
17+
runner = 'probe-run --chip STM32F411CEUx'
18+
rustflags = [
19+
"-C", "link-arg=-Tlink.x",
20+
]
21+
22+
[target.thumbv8m.main-none-eabihf]
23+
rustflags = [
24+
"-C", "link-arg=-Tlink.x",
25+
]
26+
27+
[build]
28+
target = "thumbv7em-none-eabihf"
29+
30+
[env]
31+
DEFMT_LOG = "info"

.lapce/settings.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[lapce-rust]
22
check.allTargets = false
33
check.targets = "thumbv7em-none-eabihf"
4-
cargo.features = ["rtic", "stm32f411"]
4+
cargo.features = ["rtic", "stm32f745"]

0 commit comments

Comments
 (0)