pub struct Rmt<'d, M>where
M: Mode,{
pub channel0: ChannelCreator<M, 0>,
pub channel1: ChannelCreator<M, 1>,
pub channel2: ChannelCreator<M, 2>,
pub channel3: ChannelCreator<M, 3>,
/* private fields */
}Expand description
RMT Instance
Fields§
§channel0: ChannelCreator<M, 0>RMT Channel 0.
channel1: ChannelCreator<M, 1>RMT Channel 1.
channel2: ChannelCreator<M, 2>RMT Channel 2.
channel3: ChannelCreator<M, 3>RMT Channel 3.
Implementations§
Trait Implementations§
Source§impl InterruptConfigurable for Rmt<'_, Blocking>
impl InterruptConfigurable for Rmt<'_, Blocking>
Source§fn set_interrupt_handler(&mut self, handler: InterruptHandler)
fn set_interrupt_handler(&mut self, handler: InterruptHandler)
Set the interrupt handler Read more
Auto Trait Implementations§
impl<'d, M> Freeze for Rmt<'d, M>
impl<'d, M> RefUnwindSafe for Rmt<'d, M>where
M: RefUnwindSafe,
impl<'d, M> Send for Rmt<'d, M>where
M: Send,
impl<'d, M> Sync for Rmt<'d, M>where
M: Sync,
impl<'d, M> Unpin for Rmt<'d, M>where
M: Unpin,
impl<'d, M> !UnwindSafe for Rmt<'d, M>
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