Struct stm32f7xx_hal::qspi::Qspi[][src]

pub struct Qspi { /* fields omitted */ }
Expand description

The QSPI driver interface.

Implementations

Initialize and configure the QSPI flash driver.

  • size is log2(flash size in bytes), e.g. 16 MB = 24.
  • adsize is the number of bytes needed to specify the address (1, 2, 3, or 4).

DMA read. Wrapper around the HAL DMA driver. Performs QSPI register programming, creates a DMA transfer from peripheral to memory, and starts the transfer. Caller can use the DMA wait API to block until the transfer is complete.

DMA write. Wrapper around the HAL DMA driver. Performs QSPI register programming, creates a DMA transfer from memory to peripheral, and starts the transfer. Caller can use the DMA wait API to block until the transfer is complete.

Polling indirect read. Can also be used to perform transactions with no data.

Polling indirect write.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.