1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#[doc = "Reader of register DMA_SR"]
pub type R = crate::R<u32, super::DMA_SR>;
#[doc = "Reader of field `DMASR`"]
pub type DMASR_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bit 0 - DMA Status Register"]
    #[inline(always)]
    pub fn dmasr(&self) -> DMASR_R {
        DMASR_R::new((self.bits & 0x01) != 0)
    }
}