[][src]Struct circuit_playground_express::sercom::I2CMaster3

pub struct I2CMaster3 { /* fields omitted */ }

Represents the Sercom instance configured to act as an I2C Master. The embedded_hal blocking I2C traits are implemented by this instance.

Methods

impl I2CMaster3[src]

pub fn new<F>(
    clock: &Sercom3CoreClock,
    freq: F,
    sercom: SERCOM3,
    pm: &mut PM,
    sda: Sercom3Pad0,
    scl: Sercom3Pad1
) -> I2CMaster3 where
    F: Into<Hertz>, 
[src]

Configures the sercom instance to work as an I2C Master. The clock is obtained via the GenericClockGenerator type. freq specifies the bus frequency to use for I2C communication. There are typically a handful of values that tend to be supported; standard mode is 100.khz(), full speed mode is 400.khz(). The hardware in the atsamd device supports fast mode at 1.mhz() and fast mode, but there may be additional hardware configuration missing from the current software implementation that prevents that from working as-written today.

let mut i2c = I2CMaster3::new(
    &clocks.sercom3_core(&gclk0).unwrap(),
    400.khz(),
    p.device.SERCOM3,
    &mut p.device.PM,
    // Metro M0 express has I2C on pins PA22, PA23
    pins.pa22.into_pad(&mut pins.port),
    pins.pa23.into_pad(&mut pins.port),
);

pub fn free(self) -> (Sercom3Pad0, Sercom3Pad1, SERCOM3)[src]

Breaks the sercom device up into its constituent pins and the SERCOM instance. Does not make any changes to power management.

Trait Implementations

impl WriteRead for I2CMaster3[src]

type Error = I2CError

Error type

impl Read for I2CMaster3[src]

type Error = I2CError

Error type

impl Write for I2CMaster3[src]

type Error = I2CError

Error type

fn write(
    &mut self,
    addr: u8,
    bytes: &[u8]
) -> Result<(), <I2CMaster3 as Write>::Error>
[src]

Sends bytes to slave with address addr

Auto Trait Implementations

impl Send for I2CMaster3

impl !Sync for I2CMaster3

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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