pub struct Ospi<'d, T: Instance, M: PeriMode> { /* private fields */ }
Expand description
OSPI driver.
Implementations§
Source§impl<'d, T: Instance, M: PeriMode> Ospi<'d, T, M>
impl<'d, T: Instance, M: PeriMode> Ospi<'d, T, M>
Sourcepub fn enable_memory_mapped_mode(
&mut self,
read_config: TransferConfig,
write_config: TransferConfig,
) -> Result<(), OspiError>
pub fn enable_memory_mapped_mode( &mut self, read_config: TransferConfig, write_config: TransferConfig, ) -> Result<(), OspiError>
Enter memory mode.
The Input read_config
is used to configure the read operation in memory mode
Sourcepub fn disable_memory_mapped_mode(&mut self)
pub fn disable_memory_mapped_mode(&mut self)
Quit from memory mapped mode
Sourcepub fn blocking_command(
&mut self,
command: &TransferConfig,
) -> Result<(), OspiError>
pub fn blocking_command( &mut self, command: &TransferConfig, ) -> Result<(), OspiError>
Function used to control or configure the target device without data transfer
Sourcepub fn blocking_read<W: Word>(
&mut self,
buf: &mut [W],
transaction: TransferConfig,
) -> Result<(), OspiError>
pub fn blocking_read<W: Word>( &mut self, buf: &mut [W], transaction: TransferConfig, ) -> Result<(), OspiError>
Blocking read with byte by byte data transfer
Sourcepub fn blocking_write<W: Word>(
&mut self,
buf: &[W],
transaction: TransferConfig,
) -> Result<(), OspiError>
pub fn blocking_write<W: Word>( &mut self, buf: &[W], transaction: TransferConfig, ) -> Result<(), OspiError>
Blocking write with byte by byte data transfer
Sourcepub fn set_config(&mut self, config: &Config)
pub fn set_config(&mut self, config: &Config)
Set new bus configuration
Sourcepub fn get_config(&self) -> Config
pub fn get_config(&self) -> Config
Get current configuration
Source§impl<'d, T: Instance> Ospi<'d, T, Blocking>
impl<'d, T: Instance> Ospi<'d, T, Blocking>
Sourcepub fn new_blocking_singlespi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
config: Config,
) -> Self
pub fn new_blocking_singlespi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for a single spi external chip
Sourcepub fn new_blocking_dualspi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
config: Config,
) -> Self
pub fn new_blocking_dualspi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for a dualspi external chip
Sourcepub fn new_blocking_quadspi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
d2: Peri<'d, impl D2Pin<T>>,
d3: Peri<'d, impl D3Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
config: Config,
) -> Self
pub fn new_blocking_quadspi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, d2: Peri<'d, impl D2Pin<T>>, d3: Peri<'d, impl D3Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for a quadspi external chip
Sourcepub fn new_blocking_dualquadspi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
d2: Peri<'d, impl D2Pin<T>>,
d3: Peri<'d, impl D3Pin<T>>,
d4: Peri<'d, impl D4Pin<T>>,
d5: Peri<'d, impl D5Pin<T>>,
d6: Peri<'d, impl D6Pin<T>>,
d7: Peri<'d, impl D7Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
config: Config,
) -> Self
pub fn new_blocking_dualquadspi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, d2: Peri<'d, impl D2Pin<T>>, d3: Peri<'d, impl D3Pin<T>>, d4: Peri<'d, impl D4Pin<T>>, d5: Peri<'d, impl D5Pin<T>>, d6: Peri<'d, impl D6Pin<T>>, d7: Peri<'d, impl D7Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for two quadspi external chips
Sourcepub fn new_blocking_octospi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
d2: Peri<'d, impl D2Pin<T>>,
d3: Peri<'d, impl D3Pin<T>>,
d4: Peri<'d, impl D4Pin<T>>,
d5: Peri<'d, impl D5Pin<T>>,
d6: Peri<'d, impl D6Pin<T>>,
d7: Peri<'d, impl D7Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
config: Config,
) -> Self
pub fn new_blocking_octospi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, d2: Peri<'d, impl D2Pin<T>>, d3: Peri<'d, impl D3Pin<T>>, d4: Peri<'d, impl D4Pin<T>>, d5: Peri<'d, impl D5Pin<T>>, d6: Peri<'d, impl D6Pin<T>>, d7: Peri<'d, impl D7Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for octospi external chips
Source§impl<'d, T: Instance> Ospi<'d, T, Async>
impl<'d, T: Instance> Ospi<'d, T, Async>
Sourcepub fn new_singlespi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
dma: Peri<'d, impl OctoDma<T>>,
config: Config,
) -> Self
pub fn new_singlespi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, dma: Peri<'d, impl OctoDma<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for a single spi external chip
Sourcepub fn new_dualspi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
dma: Peri<'d, impl OctoDma<T>>,
config: Config,
) -> Self
pub fn new_dualspi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, dma: Peri<'d, impl OctoDma<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for a dualspi external chip
Sourcepub fn new_quadspi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
d2: Peri<'d, impl D2Pin<T>>,
d3: Peri<'d, impl D3Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
dma: Peri<'d, impl OctoDma<T>>,
config: Config,
) -> Self
pub fn new_quadspi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, d2: Peri<'d, impl D2Pin<T>>, d3: Peri<'d, impl D3Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, dma: Peri<'d, impl OctoDma<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for a quadspi external chip
Sourcepub fn new_dualquadspi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
d2: Peri<'d, impl D2Pin<T>>,
d3: Peri<'d, impl D3Pin<T>>,
d4: Peri<'d, impl D4Pin<T>>,
d5: Peri<'d, impl D5Pin<T>>,
d6: Peri<'d, impl D6Pin<T>>,
d7: Peri<'d, impl D7Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
dma: Peri<'d, impl OctoDma<T>>,
config: Config,
) -> Self
pub fn new_dualquadspi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, d2: Peri<'d, impl D2Pin<T>>, d3: Peri<'d, impl D3Pin<T>>, d4: Peri<'d, impl D4Pin<T>>, d5: Peri<'d, impl D5Pin<T>>, d6: Peri<'d, impl D6Pin<T>>, d7: Peri<'d, impl D7Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, dma: Peri<'d, impl OctoDma<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for two quadspi external chips
Sourcepub fn new_octospi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
d2: Peri<'d, impl D2Pin<T>>,
d3: Peri<'d, impl D3Pin<T>>,
d4: Peri<'d, impl D4Pin<T>>,
d5: Peri<'d, impl D5Pin<T>>,
d6: Peri<'d, impl D6Pin<T>>,
d7: Peri<'d, impl D7Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
dma: Peri<'d, impl OctoDma<T>>,
config: Config,
) -> Self
pub fn new_octospi( peri: Peri<'d, T>, sck: Peri<'d, impl SckPin<T>>, d0: Peri<'d, impl D0Pin<T>>, d1: Peri<'d, impl D1Pin<T>>, d2: Peri<'d, impl D2Pin<T>>, d3: Peri<'d, impl D3Pin<T>>, d4: Peri<'d, impl D4Pin<T>>, d5: Peri<'d, impl D5Pin<T>>, d6: Peri<'d, impl D6Pin<T>>, d7: Peri<'d, impl D7Pin<T>>, nss: Peri<'d, impl NSSPin<T>>, dma: Peri<'d, impl OctoDma<T>>, config: Config, ) -> Self
Create new blocking OSPI driver for octospi external chips
Sourcepub fn blocking_read_dma<W: Word>(
&mut self,
buf: &mut [W],
transaction: TransferConfig,
) -> Result<(), OspiError>
pub fn blocking_read_dma<W: Word>( &mut self, buf: &mut [W], transaction: TransferConfig, ) -> Result<(), OspiError>
Blocking read with DMA transfer
Sourcepub fn blocking_write_dma<W: Word>(
&mut self,
buf: &[W],
transaction: TransferConfig,
) -> Result<(), OspiError>
pub fn blocking_write_dma<W: Word>( &mut self, buf: &[W], transaction: TransferConfig, ) -> Result<(), OspiError>
Blocking write with DMA transfer