atsamd51n/usb/device/
epintsmry.rs

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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#[doc = "Register `EPINTSMRY` reader"]
pub type R = crate::R<EpintsmrySpec>;
#[doc = "Field `EPINT0` reader - End Point 0 Interrupt"]
pub type Epint0R = crate::BitReader;
#[doc = "Field `EPINT1` reader - End Point 1 Interrupt"]
pub type Epint1R = crate::BitReader;
#[doc = "Field `EPINT2` reader - End Point 2 Interrupt"]
pub type Epint2R = crate::BitReader;
#[doc = "Field `EPINT3` reader - End Point 3 Interrupt"]
pub type Epint3R = crate::BitReader;
#[doc = "Field `EPINT4` reader - End Point 4 Interrupt"]
pub type Epint4R = crate::BitReader;
#[doc = "Field `EPINT5` reader - End Point 5 Interrupt"]
pub type Epint5R = crate::BitReader;
#[doc = "Field `EPINT6` reader - End Point 6 Interrupt"]
pub type Epint6R = crate::BitReader;
#[doc = "Field `EPINT7` reader - End Point 7 Interrupt"]
pub type Epint7R = crate::BitReader;
impl R {
    #[doc = "Bit 0 - End Point 0 Interrupt"]
    #[inline(always)]
    pub fn epint0(&self) -> Epint0R {
        Epint0R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - End Point 1 Interrupt"]
    #[inline(always)]
    pub fn epint1(&self) -> Epint1R {
        Epint1R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - End Point 2 Interrupt"]
    #[inline(always)]
    pub fn epint2(&self) -> Epint2R {
        Epint2R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - End Point 3 Interrupt"]
    #[inline(always)]
    pub fn epint3(&self) -> Epint3R {
        Epint3R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - End Point 4 Interrupt"]
    #[inline(always)]
    pub fn epint4(&self) -> Epint4R {
        Epint4R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - End Point 5 Interrupt"]
    #[inline(always)]
    pub fn epint5(&self) -> Epint5R {
        Epint5R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - End Point 6 Interrupt"]
    #[inline(always)]
    pub fn epint6(&self) -> Epint6R {
        Epint6R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - End Point 7 Interrupt"]
    #[inline(always)]
    pub fn epint7(&self) -> Epint7R {
        Epint7R::new(((self.bits >> 7) & 1) != 0)
    }
}
#[doc = "DEVICE End Point Interrupt Summary\n\nYou can [`read`](crate::Reg::read) this register and get [`epintsmry::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct EpintsmrySpec;
impl crate::RegisterSpec for EpintsmrySpec {
    type Ux = u16;
}
#[doc = "`read()` method returns [`epintsmry::R`](R) reader structure"]
impl crate::Readable for EpintsmrySpec {}
#[doc = "`reset()` method sets EPINTSMRY to value 0"]
impl crate::Resettable for EpintsmrySpec {
    const RESET_VALUE: u16 = 0;
}