Struct rp2040_pac2::sio::Fifo [−][src]
Implementations
impl Fifo
[src]
pub fn st(self) -> Reg<FifoSt, RW>
[src]
Status register for inter-core FIFOs (mailboxes). There is one FIFO in the core 0 -> core 1 direction, and one core 1 -> core 0. Both are 32 bits wide and 8 words deep. Core 0 can see the read side of the 1->0 FIFO (RX), and the write side of 0->1 FIFO (TX). Core 1 can see the read side of the 0->1 FIFO (RX), and the write side of 1->0 FIFO (TX). The SIO IRQ for each core is the logical OR of the VLD, WOF and ROE fields of its FIFO_ST register.
pub fn wr(self) -> Reg<u32, W>
[src]
Write access to this core’s TX FIFO
pub fn rd(self) -> Reg<u32, R>
[src]
Read access to this core’s RX FIFO
Trait Implementations
impl Clone for Fifo
[src]
fn clone(&self) -> Fifo
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Fifo
[src]
impl Send for Fifo
[src]
impl Sync for Fifo
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,