va416xx_hal/spi.rs
1//! API for the SPI peripheral.
2//!
3//! The main abstraction provided by this module is the [Spi] an structure.
4//! It provides the [SpiBus trait](https://docs.rs/embedded-hal/latest/embedded_hal/spi/trait.SpiBus.html),
5//! but also offer a low level interface via the [SpiLowLevel] trait.
6//!
7//! ## Examples
8//!
9//! - [Blocking SPI example](https://egit.irs.uni-stuttgart.de/rust/va416xx-rs/src/branch/main/examples/simple/examples/spi.rs)
10//! - [NVM library][crate::nvm]
11pub use vorago_shared_hal::spi::*;