stm32f7x7_hal/
lib.rs

1#![no_std]
2#![allow(non_camel_case_types)]
3#![allow(unused_imports)]
4#![allow(unused_variables)]
5#![allow(deprecated)]
6
7pub use embedded_hal as hal;
8
9pub use stm32f7::stm32f7x7 as stm32;
10
11pub use nb;
12pub use nb::block;
13
14#[cfg(feature = "rt")]
15pub use crate::stm32::interrupt;
16
17pub mod adc;
18pub mod delay;
19pub mod gpio;
20pub mod i2c;
21pub mod prelude;
22pub mod qei;
23pub mod rcc;
24pub mod serial;
25pub mod signature;
26pub mod spi;
27pub mod time;
28pub mod timer;
29pub mod watchdog;