Skip to content

Commit 8df6635

Browse files
authored
DAC unmacro (#189)
1 parent 49632de commit 8df6635

File tree

6 files changed

+186
-195
lines changed

6 files changed

+186
-195
lines changed

.zed/settings.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"lsp": {
3+
"rust-analyzer": {
4+
"initialization_options": {
5+
"cargo": {
6+
"features": ["defmt", "stm32g473"]
7+
},
8+
"check": {
9+
"allTargets": false,
10+
"targets": "thumbv7em-none-eabihf"
11+
}
12+
}
13+
}
14+
}
15+
}

Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,13 @@ stm32g4a1 = ["stm32g4/stm32g4a1"]
9898
log-itm = ["cortex-m-log/itm"]
9999
log-rtt = []
100100
log-semihost = ["cortex-m-log/semihosting"]
101-
defmt = ["dep:defmt", "fugit/defmt", "nb/defmt-0-3", "embedded-hal/defmt-03", "embedded-io/defmt-03"]
101+
defmt = [
102+
"dep:defmt",
103+
"fugit/defmt",
104+
"nb/defmt-0-3",
105+
"embedded-hal/defmt-03",
106+
"embedded-io/defmt-03",
107+
]
102108
cordic = ["dep:fixed"]
103109

104110
[profile.dev]

0 commit comments

Comments
 (0)