atsamd51p/usb/host/host_pipe/
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
#[doc = "Register `PSTATUSCLR` writer"]
pub type W = crate::W<PstatusclrSpec>;
#[doc = "Field `DTGL` writer - Data Toggle clear"]
pub type DtglW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CURBK` writer - Curren Bank clear"]
pub type CurbkW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `PFREEZE` writer - Pipe Freeze Clear"]
pub type PfreezeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BK0RDY` writer - Bank 0 Ready Clear"]
pub type Bk0rdyW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BK1RDY` writer - Bank 1 Ready Clear"]
pub type Bk1rdyW<'a, REG> = crate::BitWriter<'a, REG>;
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_PIPE End Point Pipe Status Clear\n\nYou can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pstatusclr::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PstatusclrSpec;
impl crate::RegisterSpec for PstatusclrSpec {
    type Ux = u8;
}
#[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 to value 0"]
impl crate::Resettable for PstatusclrSpec {
    const RESET_VALUE: u8 = 0;
}