-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (44 loc) · 941 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "micro"
version = "0.1.0"
authors = ["spcan <agrc14@gmail.com>"]
edition = "2018"
[dependencies]
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2.2"
[dependencies.cortex-m-semihosting]
optional = true
version = "*"
[features]
advanced-use = []
apb2 = []
apb3 = ["apb2"]
clock_gates = []
default = ["advanced-use"]
double_exti = []
fpu = []
pllsai = []
plli2s = []
single_exti = []
sdio = []
usbotg = []
debug = [ "cortex-m-semihosting" ]
stm32f0 = ["double_exti"]
stm32f1 = ["single_exti"]
stm32f4 = ["fpu", "single_exti", "apb2"]
stm32f7 = []
stm32f411 = ["stm32f4", "plli2s", "apb2", "sdio", "usbotg"]
stm32f410 = ["stm32f4"]
stm32f401 = ["stm32f4"]
stm32f412 = ["stm32f4"]
stm32f4x3 = ["stm32f4"]
stm32f4x5 = ["stm32f4"]
stm32f4x7 = ["stm32f4"]
stm32f4x9 = ["stm32f4"]
stm32f446 = ["stm32f4"]
stm32f72x = ["stm32f7"]
stm32f73x = ["stm32f7"]
stm32f100 = ["stm32f1"]
[profile.release]
lto = true