pub struct R(_);Expand description
Register ISR reader
Implementations
sourceimpl R
impl R
sourcepub fn teif(&self) -> BitReaderRaw<bool>
pub fn teif(&self) -> BitReaderRaw<bool>
Bit 0 - Channel x transfer error interrupt flag This bit is set by hardware. It is cleared by software writing 1 to the corresponding bit in the DMA_IFCRy register.
sourcepub fn ctcif(&self) -> BitReaderRaw<bool>
pub fn ctcif(&self) -> BitReaderRaw<bool>
Bit 1 - Channel x Channel Transfer Complete interrupt flag This bit is set by hardware. It is cleared by software writing 1 to the corresponding bit in the DMA_IFCRy register. CTC is set when the last block was transferred and the channel has been automatically disabled. CTC is also set when the channel is suspended, as a result of writing EN bit to 0.
sourcepub fn brtif(&self) -> BitReaderRaw<bool>
pub fn brtif(&self) -> BitReaderRaw<bool>
Bit 2 - Channel x block repeat transfer complete interrupt flag This bit is set by hardware. It is cleared by software writing 1 to the corresponding bit in the DMA_IFCRy register.
Methods from Deref<Target = R<ISR_SPEC>>
sourcepub fn bits(&self) -> <REG as RegisterSpec>::Ux
pub fn bits(&self) -> <REG as RegisterSpec>::Ux
Reads raw bits from register.
Trait Implementations
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more