atsamd51p/usb/device/device_endpoint/
epstatusset.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
#[doc = "Register `EPSTATUSSET` writer"]
pub type W = crate::W<EpstatussetSpec>;
#[doc = "Field `DTGLOUT` writer - Data Toggle OUT Set"]
pub type DtgloutW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `DTGLIN` writer - Data Toggle IN Set"]
pub type DtglinW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CURBK` writer - Current Bank Set"]
pub type CurbkW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `STALLRQ0` writer - Stall 0 Request Set"]
pub type Stallrq0W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `STALLRQ1` writer - Stall 1 Request Set"]
pub type Stallrq1W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BK0RDY` writer - Bank 0 Ready Set"]
pub type Bk0rdyW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BK1RDY` writer - Bank 1 Ready Set"]
pub type Bk1rdyW<'a, REG> = crate::BitWriter<'a, REG>;
impl W {
    #[doc = "Bit 0 - Data Toggle OUT Set"]
    #[inline(always)]
    #[must_use]
    pub fn dtglout(&mut self) -> DtgloutW<EpstatussetSpec> {
        DtgloutW::new(self, 0)
    }
    #[doc = "Bit 1 - Data Toggle IN Set"]
    #[inline(always)]
    #[must_use]
    pub fn dtglin(&mut self) -> DtglinW<EpstatussetSpec> {
        DtglinW::new(self, 1)
    }
    #[doc = "Bit 2 - Current Bank Set"]
    #[inline(always)]
    #[must_use]
    pub fn curbk(&mut self) -> CurbkW<EpstatussetSpec> {
        CurbkW::new(self, 2)
    }
    #[doc = "Bit 4 - Stall 0 Request Set"]
    #[inline(always)]
    #[must_use]
    pub fn stallrq0(&mut self) -> Stallrq0W<EpstatussetSpec> {
        Stallrq0W::new(self, 4)
    }
    #[doc = "Bit 5 - Stall 1 Request Set"]
    #[inline(always)]
    #[must_use]
    pub fn stallrq1(&mut self) -> Stallrq1W<EpstatussetSpec> {
        Stallrq1W::new(self, 5)
    }
    #[doc = "Bit 6 - Bank 0 Ready Set"]
    #[inline(always)]
    #[must_use]
    pub fn bk0rdy(&mut self) -> Bk0rdyW<EpstatussetSpec> {
        Bk0rdyW::new(self, 6)
    }
    #[doc = "Bit 7 - Bank 1 Ready Set"]
    #[inline(always)]
    #[must_use]
    pub fn bk1rdy(&mut self) -> Bk1rdyW<EpstatussetSpec> {
        Bk1rdyW::new(self, 7)
    }
}
#[doc = "DEVICE_ENDPOINT End Point Pipe Status Set\n\nYou can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`epstatusset::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct EpstatussetSpec;
impl crate::RegisterSpec for EpstatussetSpec {
    type Ux = u8;
}
#[doc = "`write(|w| ..)` method takes [`epstatusset::W`](W) writer structure"]
impl crate::Writable for EpstatussetSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
}
#[doc = "`reset()` method sets EPSTATUSSET to value 0"]
impl crate::Resettable for EpstatussetSpec {
    const RESET_VALUE: u8 = 0;
}