-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathlib.rs
185 lines (160 loc) · 4.11 KB
/
lib.rs
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#![no_std]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "device-selected"))]
compile_error!(
"This crate requires one of the following device features enabled:
stm32f401
stm32f405
stm32f407
stm32f410
stm32f411
stm32f412
stm32f413
stm32f415
stm32f417
stm32f423
stm32f427
stm32f429
stm32f437
stm32f439
stm32f446
stm32f469
stm32f479"
);
pub use embedded_hal as hal;
pub use nb;
pub use nb::block;
#[cfg(feature = "stm32f401")]
pub use stm32f4::stm32f401 as stm32;
#[cfg(feature = "stm32f405")]
pub use stm32f4::stm32f405 as stm32;
#[cfg(feature = "stm32f407")]
pub use stm32f4::stm32f407 as stm32;
#[cfg(feature = "stm32f410")]
pub use stm32f4::stm32f410 as stm32;
#[cfg(feature = "stm32f411")]
pub use stm32f4::stm32f411 as stm32;
#[cfg(feature = "stm32f412")]
pub use stm32f4::stm32f412 as stm32;
#[cfg(feature = "stm32f413")]
pub use stm32f4::stm32f413 as stm32;
#[cfg(feature = "stm32f415")]
pub use stm32f4::stm32f405 as stm32;
#[cfg(feature = "stm32f417")]
pub use stm32f4::stm32f407 as stm32;
#[cfg(feature = "stm32f423")]
pub use stm32f4::stm32f413 as stm32;
#[cfg(feature = "stm32f427")]
pub use stm32f4::stm32f427 as stm32;
#[cfg(feature = "stm32f429")]
pub use stm32f4::stm32f429 as stm32;
#[cfg(feature = "stm32f437")]
pub use stm32f4::stm32f427 as stm32;
#[cfg(feature = "stm32f439")]
pub use stm32f4::stm32f429 as stm32;
#[cfg(feature = "stm32f446")]
pub use stm32f4::stm32f446 as stm32;
#[cfg(feature = "stm32f469")]
pub use stm32f4::stm32f469 as stm32;
#[cfg(feature = "stm32f479")]
pub use stm32f4::stm32f469 as stm32;
// Enable use of interrupt macro
#[cfg(feature = "rt")]
pub use crate::stm32::interrupt;
#[cfg(feature = "device-selected")]
pub mod adc;
#[cfg(feature = "device-selected")]
pub mod bb;
#[cfg(all(
feature = "device-selected",
not(any(feature = "stm32f411", feature = "stm32f412", feature = "stm32f401",))
))]
pub mod dac;
#[cfg(feature = "device-selected")]
pub mod delay;
#[cfg(feature = "device-selected")]
pub mod gpio;
#[cfg(feature = "device-selected")]
pub mod i2c;
#[cfg(all(
feature = "usb_fs",
any(
feature = "stm32f401",
feature = "stm32f405",
feature = "stm32f407",
feature = "stm32f411",
feature = "stm32f412",
feature = "stm32f413",
feature = "stm32f415",
feature = "stm32f417",
feature = "stm32f423",
feature = "stm32f427",
feature = "stm32f429",
feature = "stm32f437",
feature = "stm32f439",
feature = "stm32f446",
feature = "stm32f469",
feature = "stm32f479",
)
))]
pub mod otg_fs;
#[cfg(all(
any(feature = "usb_hs", docsrs),
any(
feature = "stm32f405",
feature = "stm32f407",
feature = "stm32f415",
feature = "stm32f417",
feature = "stm32f427",
feature = "stm32f429",
feature = "stm32f437",
feature = "stm32f439",
feature = "stm32f446",
feature = "stm32f469",
feature = "stm32f479",
)
))]
pub mod otg_hs;
#[cfg(all(
feature = "device-selected",
not(any(
feature = "stm32f401",
feature = "stm32f410",
feature = "stm32f411",
feature = "stm32f446",
))
))]
pub mod rng;
#[cfg(feature = "device-selected")]
pub use stm32 as pac;
#[cfg(feature = "device-selected")]
pub mod dma;
#[cfg(feature = "device-selected")]
pub mod dwt;
#[cfg(feature = "device-selected")]
pub mod prelude;
#[cfg(feature = "device-selected")]
pub mod pwm;
#[cfg(feature = "device-selected")]
pub mod qei;
#[cfg(feature = "device-selected")]
pub mod rcc;
#[cfg(all(
feature = "sdio",
not(any(feature = "stm32f410", feature = "stm32f446",))
))]
pub mod sdio;
#[cfg(feature = "device-selected")]
pub mod serial;
#[cfg(feature = "device-selected")]
pub mod signature;
#[cfg(feature = "device-selected")]
pub mod spi;
#[cfg(feature = "device-selected")]
pub mod systick;
#[cfg(feature = "device-selected")]
pub mod time;
#[cfg(feature = "device-selected")]
pub mod timer;
#[cfg(feature = "device-selected")]
pub mod watchdog;