Struct esp_idf_svc::sd::spi::SpiDevice

source ·
pub struct SpiDevice<'d> { /* private fields */ }

Implementations§

source§

impl<'d> SpiDevice<'d>

source

pub fn new( driver: SpiDriver<'d>, cs: impl Peripheral<P = impl OutputPin> + 'd, cd: Option<impl Peripheral<P = impl InputPin> + 'd>, wp: Option<impl Peripheral<P = impl InputPin> + 'd>, int: Option<impl Peripheral<P = impl InputPin> + 'd>, wp_polarity: Option<bool>, ) -> Self

source

pub fn get_host(&self) -> spi_host_device_t

source

pub fn set_clock(&mut self, clock: u32) -> Result<(), EspError>

source

pub fn get_clock(&mut self) -> Result<u32, EspError>

source

pub fn enable_interrupt(&mut self) -> Result<(), EspError>

source

pub fn wait_interrupt(&mut self, timeout: u32) -> Result<(), EspError>

Trait Implementations§

source§

impl Drop for SpiDevice<'_>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'d> !Freeze for SpiDevice<'d>

§

impl<'d> !RefUnwindSafe for SpiDevice<'d>

§

impl<'d> Send for SpiDevice<'d>

§

impl<'d> Sync for SpiDevice<'d>

§

impl<'d> Unpin for SpiDevice<'d>

§

impl<'d> !UnwindSafe for SpiDevice<'d>

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.