atsamd_hal::sercom::spi_future

Struct SpiFuture

Source
pub struct SpiFuture<S, B, SS = NoneT, W = fn()>
where S: CheckBufLen, B: AsRef<[u8]> + AsMut<[u8]> + 'static, SS: ControlSS, W: FnOnce() + 'static,
{ /* private fields */ }
👎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.
Expand description

A Future-like interface for SPI transactions

See the module-level documentation for more details.

Implementations§

Source§

impl<S, B> SpiFuture<S, B>
where S: CheckBufLen, B: AsRef<[u8]> + AsMut<[u8]> + 'static,

Source

pub fn new(spi: S, buf: B) -> 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.

Create a new SpiFuture with no SS pin or waker

Source§

impl<S, B, W> SpiFuture<S, B, NoneT, W>
where S: CheckBufLen, B: AsRef<[u8]> + AsMut<[u8]> + 'static, W: FnOnce() + 'static,

Source

pub fn with_ss<SS>(self, pin: SS) -> SpiFuture<S, B, SS, W>
where SS: SomePin + OutputPin<Error = Infallible>,

👎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.

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>
where S: CheckBufLen, B: AsRef<[u8]> + AsMut<[u8]> + 'static, SS: ControlSS,

Source

pub 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.

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>
where S: CheckBufLen, B: AsRef<[u8]> + AsMut<[u8]> + 'static, SS: ControlSS, W: FnOnce() + 'static,

Source

pub 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.

Start the SpiFuture transaction

This will assert the SS pin, if present, and enable the DRE and RXC interrupts.

Source

pub 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.

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.

Source

pub 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.

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).

Source

pub 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.

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.

Source

pub 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.

Consume the SpiFuture and free its components

If the transaction is complete, this function will consume the SpiFuture and return the Spi object, the buffer, and the SS pin, if present.

If the transaction is not complete, it will return Err(self).

Source

pub 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.

Consume the SpiFuture and free its components without checking for completion

§Safety

Ending the transaction prematurely could leave the Spi in an inconsistent state. It is not safe to call this function unless the transaction is complete.

Auto Trait Implementations§

§

impl<S, B, SS, W> Freeze for SpiFuture<S, B, SS, W>
where S: Freeze, B: Freeze, SS: Freeze, W: Freeze,

§

impl<S, B, SS, W> RefUnwindSafe for SpiFuture<S, B, SS, W>

§

impl<S, B, SS, W> Send for SpiFuture<S, B, SS, W>
where S: Send, B: Send, SS: Send, W: Send,

§

impl<S, B, SS, W> Sync for SpiFuture<S, B, SS, W>
where S: Sync, B: Sync, SS: Sync, W: Sync,

§

impl<S, B, SS, W> Unpin for SpiFuture<S, B, SS, W>
where S: Unpin, B: Unpin, SS: Unpin, W: Unpin,

§

impl<S, B, SS, W> UnwindSafe for SpiFuture<S, B, SS, W>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.