1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#[doc = "Reader of register MMC_TX_INTERRUPT"]
pub type R = crate::R<u32, super::MMC_TX_INTERRUPT>;
#[doc = "Reader of field `TXSCOLGPIS`"]
pub type TXSCOLGPIS_R = crate::R<bool, bool>;
#[doc = "Reader of field `TXMCOLGPIS`"]
pub type TXMCOLGPIS_R = crate::R<bool, bool>;
#[doc = "Reader of field `TXGPKTIS`"]
pub type TXGPKTIS_R = crate::R<bool, bool>;
#[doc = "Reader of field `TXLPIUSCIS`"]
pub type TXLPIUSCIS_R = crate::R<bool, bool>;
#[doc = "Reader of field `TXLPITRCIS`"]
pub type TXLPITRCIS_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bit 14 - MMC Transmit Single Collision Good Packet Counter Interrupt Status"]
    #[inline(always)]
    pub fn txscolgpis(&self) -> TXSCOLGPIS_R {
        TXSCOLGPIS_R::new(((self.bits >> 14) & 0x01) != 0)
    }
    #[doc = "Bit 15 - MMC Transmit Multiple Collision Good Packet Counter Interrupt Status"]
    #[inline(always)]
    pub fn txmcolgpis(&self) -> TXMCOLGPIS_R {
        TXMCOLGPIS_R::new(((self.bits >> 15) & 0x01) != 0)
    }
    #[doc = "Bit 21 - MMC Transmit Good Packet Counter Interrupt Status"]
    #[inline(always)]
    pub fn txgpktis(&self) -> TXGPKTIS_R {
        TXGPKTIS_R::new(((self.bits >> 21) & 0x01) != 0)
    }
    #[doc = "Bit 26 - MMC Transmit LPI microsecond counter interrupt status"]
    #[inline(always)]
    pub fn txlpiuscis(&self) -> TXLPIUSCIS_R {
        TXLPIUSCIS_R::new(((self.bits >> 26) & 0x01) != 0)
    }
    #[doc = "Bit 27 - MMC Transmit LPI transition counter interrupt status"]
    #[inline(always)]
    pub fn txlpitrcis(&self) -> TXLPITRCIS_R {
        TXLPITRCIS_R::new(((self.bits >> 27) & 0x01) != 0)
    }
}