stm32f7_staging/
lib.rs

1//! Peripheral access API for STM32F7 microcontrollers
2//! (generated using [svd2rust](https://github.com/rust-embedded/svd2rust)
3//! 0.36.1)
4//!
5//! You can find an overview of the API here:
6//! [svd2rust/#peripheral-api](https://docs.rs/svd2rust/0.36.1/svd2rust/#peripheral-api)
7//!
8//! For more details see the README here:
9//! [stm32-rs](https://github.com/stm32-rs/stm32-rs)
10//!
11//! This crate supports all STM32F7 devices; for the complete list please
12//! see:
13//! [stm32f7-staging](https://crates.io/crates/stm32f7-staging)
14//!
15//! Due to doc build limitations, not all devices may be shown on docs.rs;
16//! a representative few have been selected instead. For a complete list of
17//! available registers and fields see: [stm32-rs Device Coverage](https://stm32-rs.github.io/stm32-rs/)
18
19#![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