atsamd21g/usb/host/
pstatusclr.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#[doc = "Register `PSTATUSCLR%s` reader"]
pub type R = crate::R<PstatusclrSpec>;
#[doc = "Register `PSTATUSCLR%s` writer"]
pub type W = crate::W<PstatusclrSpec>;
#[doc = "Field `DTGL` reader - Data Toggle clear"]
pub type DtglR = crate::BitReader;
#[doc = "Field `DTGL` writer - Data Toggle clear"]
pub type DtglW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CURBK` reader - Curren Bank clear"]
pub type CurbkR = crate::BitReader;
#[doc = "Field `CURBK` writer - Curren Bank clear"]
pub type CurbkW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `PFREEZE` reader - Pipe Freeze Clear"]
pub type PfreezeR = crate::BitReader;
#[doc = "Field `PFREEZE` writer - Pipe Freeze Clear"]
pub type PfreezeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BK0RDY` reader - Bank 0 Ready Clear"]
pub type Bk0rdyR = crate::BitReader;
#[doc = "Field `BK0RDY` writer - Bank 0 Ready Clear"]
pub type Bk0rdyW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BK1RDY` reader - Bank 1 Ready Clear"]
pub type Bk1rdyR = crate::BitReader;
#[doc = "Field `BK1RDY` writer - Bank 1 Ready Clear"]
pub type Bk1rdyW<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
    #[doc = "Bit 0 - Data Toggle clear"]
    #[inline(always)]
    pub fn dtgl(&self) -> DtglR {
        DtglR::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 2 - Curren Bank clear"]
    #[inline(always)]
    pub fn curbk(&self) -> CurbkR {
        CurbkR::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 4 - Pipe Freeze Clear"]
    #[inline(always)]
    pub fn pfreeze(&self) -> PfreezeR {
        PfreezeR::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 6 - Bank 0 Ready Clear"]
    #[inline(always)]
    pub fn bk0rdy(&self) -> Bk0rdyR {
        Bk0rdyR::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Bank 1 Ready Clear"]
    #[inline(always)]
    pub fn bk1rdy(&self) -> Bk1rdyR {
        Bk1rdyR::new(((self.bits >> 7) & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - Data Toggle clear"]
    #[inline(always)]
    #[must_use]
    pub fn dtgl(&mut self) -> DtglW<PstatusclrSpec> {
        DtglW::new(self, 0)
    }
    #[doc = "Bit 2 - Curren Bank clear"]
    #[inline(always)]
    #[must_use]
    pub fn curbk(&mut self) -> CurbkW<PstatusclrSpec> {
        CurbkW::new(self, 2)
    }
    #[doc = "Bit 4 - Pipe Freeze Clear"]
    #[inline(always)]
    #[must_use]
    pub fn pfreeze(&mut self) -> PfreezeW<PstatusclrSpec> {
        PfreezeW::new(self, 4)
    }
    #[doc = "Bit 6 - Bank 0 Ready Clear"]
    #[inline(always)]
    #[must_use]
    pub fn bk0rdy(&mut self) -> Bk0rdyW<PstatusclrSpec> {
        Bk0rdyW::new(self, 6)
    }
    #[doc = "Bit 7 - Bank 1 Ready Clear"]
    #[inline(always)]
    #[must_use]
    pub fn bk1rdy(&mut self) -> Bk1rdyW<PstatusclrSpec> {
        Bk1rdyW::new(self, 7)
    }
}
#[doc = "HOST End Point Pipe Status Clear\n\nYou can [`read`](crate::Reg::read) this register and get [`pstatusclr::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pstatusclr::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PstatusclrSpec;
impl crate::RegisterSpec for PstatusclrSpec {
    type Ux = u8;
}
#[doc = "`read()` method returns [`pstatusclr::R`](R) reader structure"]
impl crate::Readable for PstatusclrSpec {}
#[doc = "`write(|w| ..)` method takes [`pstatusclr::W`](W) writer structure"]
impl crate::Writable for PstatusclrSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
}
#[doc = "`reset()` method sets PSTATUSCLR%s to value 0"]
impl crate::Resettable for PstatusclrSpec {
    const RESET_VALUE: u8 = 0;
}