Expand description
Interfaces for SPI controller (master) and peripheral (slave) communication.
We use the terms master/slave in some situations because the term peripheral can also refer to a hardware peripheral (e.g., memory-mapped I/O devices in ARM are called peripherals).
Modules§
Enums§
- Clock
Phase - Clock phase (CPHA) defines whether to sample and send data on a leading or trailing clock edge.
- Clock
Polarity - Clock polarity (CPOL) defines whether the SPI clock is high or low when idle.
- Data
Order - Data order defines the order of bits sent over the wire: most significant first, or least significant first.
Traits§
- SpiMaster
- Trait for interacting with SPI peripheral devices at a byte or buffer level.
- SpiMaster
Client - Trait for clients of a SPI bus in master mode.
- SpiMaster
Device - A chip-select-specific interface to the SPI Controller hardware, such that a client cannot change the chip select line.
- SpiSlave
- Trait for SPI peripherals (slaves) to exchange data with a contoller (master).
- SpiSlave
Client - Trait for SPI peripherals (slaves) to receive callbacks when the corresponding controller (master) issues operations.
- SpiSlave
Device - An interface to a SPI bus in peripheral mode.