pub struct Ipcc { /* private fields */ }Expand description
IPCC driver.
Implementations§
Source§impl Ipcc
impl Ipcc
Sourcepub fn new<'d>(
_peripheral: Peri<'d, IPCC>,
_irq: impl Binding<IPCC_C1_RX, ReceiveInterruptHandler> + Binding<IPCC_C1_TX, TransmitInterruptHandler> + 'd,
_config: Config,
) -> Self
pub fn new<'d>( _peripheral: Peri<'d, IPCC>, _irq: impl Binding<IPCC_C1_RX, ReceiveInterruptHandler> + Binding<IPCC_C1_TX, TransmitInterruptHandler> + 'd, _config: Config, ) -> Self
Creates a new HardwareSemaphore instance.
Sourcepub const fn split<'a>(self) -> [(IpccTxChannel<'a>, IpccRxChannel<'a>); 6]
pub const fn split<'a>(self) -> [(IpccTxChannel<'a>, IpccRxChannel<'a>); 6]
Split into a tx and rx channel
Auto Trait Implementations§
impl Freeze for Ipcc
impl RefUnwindSafe for Ipcc
impl Send for Ipcc
impl Sync for Ipcc
impl Unpin for Ipcc
impl UnwindSafe for Ipcc
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