atsamd51j/usb/host/
pintsmry.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 `PINTSMRY` reader"]
pub type R = crate::R<PintsmrySpec>;
#[doc = "Field `EPINT0` reader - Pipe 0 Interrupt"]
pub type Epint0R = crate::BitReader;
#[doc = "Field `EPINT1` reader - Pipe 1 Interrupt"]
pub type Epint1R = crate::BitReader;
#[doc = "Field `EPINT2` reader - Pipe 2 Interrupt"]
pub type Epint2R = crate::BitReader;
#[doc = "Field `EPINT3` reader - Pipe 3 Interrupt"]
pub type Epint3R = crate::BitReader;
#[doc = "Field `EPINT4` reader - Pipe 4 Interrupt"]
pub type Epint4R = crate::BitReader;
#[doc = "Field `EPINT5` reader - Pipe 5 Interrupt"]
pub type Epint5R = crate::BitReader;
#[doc = "Field `EPINT6` reader - Pipe 6 Interrupt"]
pub type Epint6R = crate::BitReader;
#[doc = "Field `EPINT7` reader - Pipe 7 Interrupt"]
pub type Epint7R = crate::BitReader;
impl R {
    #[doc = "Bit 0 - Pipe 0 Interrupt"]
    #[inline(always)]
    pub fn epint0(&self) -> Epint0R {
        Epint0R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Pipe 1 Interrupt"]
    #[inline(always)]
    pub fn epint1(&self) -> Epint1R {
        Epint1R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Pipe 2 Interrupt"]
    #[inline(always)]
    pub fn epint2(&self) -> Epint2R {
        Epint2R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Pipe 3 Interrupt"]
    #[inline(always)]
    pub fn epint3(&self) -> Epint3R {
        Epint3R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - Pipe 4 Interrupt"]
    #[inline(always)]
    pub fn epint4(&self) -> Epint4R {
        Epint4R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Pipe 5 Interrupt"]
    #[inline(always)]
    pub fn epint5(&self) -> Epint5R {
        Epint5R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Pipe 6 Interrupt"]
    #[inline(always)]
    pub fn epint6(&self) -> Epint6R {
        Epint6R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Pipe 7 Interrupt"]
    #[inline(always)]
    pub fn epint7(&self) -> Epint7R {
        Epint7R::new(((self.bits >> 7) & 1) != 0)
    }
}
#[doc = "HOST Pipe Interrupt Summary\n\nYou can [`read`](crate::Reg::read) this register and get [`pintsmry::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PintsmrySpec;
impl crate::RegisterSpec for PintsmrySpec {
    type Ux = u16;
}
#[doc = "`read()` method returns [`pintsmry::R`](R) reader structure"]
impl crate::Readable for PintsmrySpec {}
#[doc = "`reset()` method sets PINTSMRY to value 0"]
impl crate::Resettable for PintsmrySpec {
    const RESET_VALUE: u16 = 0;
}