1#![allow(non_camel_case_types)]
20#![allow(non_snake_case)]
21#![no_std]
22
23mod generic;
24pub use self::generic::*;
25
26#[cfg(feature = "stm32f722")]
27pub mod stm32f722;
28
29#[cfg(feature = "stm32f723")]
30pub mod stm32f723;
31
32#[cfg(feature = "stm32f730")]
33pub mod stm32f730;
34
35#[cfg(feature = "stm32f732")]
36pub mod stm32f732;
37
38#[cfg(feature = "stm32f733")]
39pub mod stm32f733;
40
41#[cfg(feature = "stm32f745")]
42pub mod stm32f745;
43
44#[cfg(feature = "stm32f746")]
45pub mod stm32f746;
46
47#[cfg(feature = "stm32f750")]
48pub mod stm32f750;
49
50#[cfg(feature = "stm32f756")]
51pub mod stm32f756;
52
53#[cfg(feature = "stm32f765")]
54pub mod stm32f765;
55
56#[cfg(feature = "stm32f767")]
57pub mod stm32f767;
58
59#[cfg(feature = "stm32f769")]
60pub mod stm32f769;
61
62#[cfg(feature = "stm32f777")]
63pub mod stm32f777;
64
65#[cfg(feature = "stm32f778")]
66pub mod stm32f778;
67
68#[cfg(feature = "stm32f779")]
69pub mod stm32f779;
70