[][src]Struct nrf51_hal::Twi

pub struct Twi<T>(_);

Implementations

impl<T> Twi<T> where
    T: Instance
[src]

pub fn new(twi: T, pins: Pins, frequency: FREQUENCY_A) -> Twi<T>[src]

pub fn write(&mut self, address: u8, buffer: &[u8]) -> Result<(), Error>[src]

Write to an I2C slave.

pub fn read(&mut self, address: u8, buffer: &mut [u8]) -> Result<(), Error>[src]

Read from an I2C slave.

pub fn write_then_read(
    &mut self,
    address: u8,
    wr_buffer: &[u8],
    rd_buffer: &mut [u8]
) -> Result<(), Error>
[src]

Write data to an I2C slave, then read data from the slave without triggering a stop condition between the two.

pub fn free(self) -> T[src]

Return the raw interface to the underlying TWI peripheral.

Trait Implementations

impl<T> Read for Twi<T> where
    T: Instance
[src]

type Error = Error

Error type

impl<T> Write for Twi<T> where
    T: Instance
[src]

type Error = Error

Error type

impl<T> WriteRead for Twi<T> where
    T: Instance
[src]

type Error = Error

Error type

Auto Trait Implementations

impl<T> Send for Twi<T> where
    T: Send

impl<T> Sync for Twi<T> where
    T: Sync

impl<T> Unpin for Twi<T> where
    T: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.