pub struct SpiFuture<S, B, SS = NoneT, W = fn()>{ /* private fields */ }
async
APIs available in the spi
module as a replacement.Expand description
A Future
-like interface for SPI transactions
See the module-level documentation for more details.
Implementations§
Source§impl<S, B, W> SpiFuture<S, B, NoneT, W>
impl<S, B, W> SpiFuture<S, B, NoneT, W>
Sourcepub fn with_ss<SS>(self, pin: SS) -> SpiFuture<S, B, SS, W>
👎Deprecated since 0.19.0: spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the async
APIs available in the spi
module as a replacement.
pub fn with_ss<SS>(self, pin: SS) -> SpiFuture<S, B, SS, W>
async
APIs available in the spi
module as a replacement.Add an SS pin to the SpiFuture
This function changes the SS
type, so it must take an owned self
.
Source§impl<S, B, SS> SpiFuture<S, B, SS>
impl<S, B, SS> SpiFuture<S, B, SS>
Sourcepub fn with_waker<W>(self, waker: W) -> SpiFuture<S, B, SS, W>where
W: FnOnce() + 'static,
👎Deprecated since 0.19.0: spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the async
APIs available in the spi
module as a replacement.
pub fn with_waker<W>(self, waker: W) -> SpiFuture<S, B, SS, W>where
W: FnOnce() + 'static,
async
APIs available in the spi
module as a replacement.Add a waker to the SpiFuture
This function changes the waker type, so it must take an owned self
.
Source§impl<S, B, SS, W> SpiFuture<S, B, SS, W>
impl<S, B, SS, W> SpiFuture<S, B, SS, W>
Sourcepub fn start(&mut self)
👎Deprecated since 0.19.0: spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the async
APIs available in the spi
module as a replacement.
pub fn start(&mut self)
async
APIs available in the spi
module as a replacement.Start the SpiFuture
transaction
This will assert the SS pin, if present, and enable the DRE
and RXC
interrupts.
Sourcepub fn send(&mut self) -> Result<(), Error>
👎Deprecated since 0.19.0: spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the async
APIs available in the spi
module as a replacement.
pub fn send(&mut self) -> Result<(), Error>
async
APIs available in the spi
module as a replacement.Send the next set of bytes from the buffer
This method should be called from the DRE
interrupt handler. Once all
bytes of the transaction have been sent, this function will
automatically disable the DRE
interrupt.
Sourcepub fn recv(&mut self) -> Result<(), Error>
👎Deprecated since 0.19.0: spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the async
APIs available in the spi
module as a replacement.
pub fn recv(&mut self) -> Result<(), Error>
async
APIs available in the spi
module as a replacement.Received the next set of bytes and write them to the buffer
This method should be called from the RXC
interrupt handler. Once all
bytes of the transaction have been received, this function will
automatically disable the RXC
interrupt, deassert the SS pin (if
present), and call the waker (if present).
Sourcepub fn poll(&self) -> Poll<&[u8]>
👎Deprecated since 0.19.0: spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the async
APIs available in the spi
module as a replacement.
pub fn poll(&self) -> Poll<&[u8]>
async
APIs available in the spi
module as a replacement.Poll the SpiFuture
This function will return Poll::Pending
until all bytes have been
received. When the transaction is complete, it will return
Poll::Ready
with a reference to the completed buffer.
Sourcepub fn free(self) -> Result<(S, B, SS), Self>
👎Deprecated since 0.19.0: spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the async
APIs available in the spi
module as a replacement.
pub fn free(self) -> Result<(S, B, SS), Self>
async
APIs available in the spi
module as a replacement.Sourcepub unsafe fn free_unchecked(self) -> (S, B, SS)
👎Deprecated since 0.19.0: spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the async
APIs available in the spi
module as a replacement.
pub unsafe fn free_unchecked(self) -> (S, B, SS)
async
APIs available in the spi
module as a replacement.