pub struct Twim { /* private fields */ }
Expand description
I2C compatible Two-Wire Master Interface with EasyDMA
Implementations§
Source§impl Twim
impl Twim
pub const unsafe fn from_ptr(ptr: *mut ()) -> Self
pub const fn as_ptr(&self) -> *mut ()
Sourcepub const fn tasks_startrx(self) -> Reg<u32, W>
pub const fn tasks_startrx(self) -> Reg<u32, W>
Start TWI receive sequence
Sourcepub const fn tasks_starttx(self) -> Reg<u32, W>
pub const fn tasks_starttx(self) -> Reg<u32, W>
Start TWI transmit sequence
Sourcepub const fn tasks_stop(self) -> Reg<u32, W>
pub const fn tasks_stop(self) -> Reg<u32, W>
Stop TWI transaction. Must be issued while the TWI master is not suspended.
Sourcepub const fn tasks_suspend(self) -> Reg<u32, W>
pub const fn tasks_suspend(self) -> Reg<u32, W>
Suspend TWI transaction
Sourcepub const fn tasks_resume(self) -> Reg<u32, W>
pub const fn tasks_resume(self) -> Reg<u32, W>
Resume TWI transaction
Sourcepub const fn events_stopped(self) -> Reg<u32, RW>
pub const fn events_stopped(self) -> Reg<u32, RW>
TWI stopped
Sourcepub const fn events_error(self) -> Reg<u32, RW>
pub const fn events_error(self) -> Reg<u32, RW>
TWI error
Sourcepub const fn events_suspended(self) -> Reg<u32, RW>
pub const fn events_suspended(self) -> Reg<u32, RW>
SUSPEND task has been issued, TWI traffic is now suspended.
Sourcepub const fn events_rxstarted(self) -> Reg<u32, RW>
pub const fn events_rxstarted(self) -> Reg<u32, RW>
Receive sequence started
Sourcepub const fn events_txstarted(self) -> Reg<u32, RW>
pub const fn events_txstarted(self) -> Reg<u32, RW>
Transmit sequence started
Sourcepub const fn events_lastrx(self) -> Reg<u32, RW>
pub const fn events_lastrx(self) -> Reg<u32, RW>
Byte boundary, starting to receive the last byte
Sourcepub const fn events_lasttx(self) -> Reg<u32, RW>
pub const fn events_lasttx(self) -> Reg<u32, RW>
Byte boundary, starting to transmit the last byte
Trait Implementations§
impl Copy for Twim
impl Eq for Twim
impl Send for Twim
impl StructuralPartialEq for Twim
impl Sync for Twim
Auto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)