atsaml21j17bu/usb/device/
epintflag.rs1#[doc = "Register `EPINTFLAG%s` reader"]
2pub struct R(crate::R<EPINTFLAG_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<EPINTFLAG_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<EPINTFLAG_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<EPINTFLAG_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `EPINTFLAG%s` writer"]
17pub struct W(crate::W<EPINTFLAG_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<EPINTFLAG_SPEC>;
20 #[inline(always)]
21 fn deref(&self) -> &Self::Target {
22 &self.0
23 }
24}
25impl core::ops::DerefMut for W {
26 #[inline(always)]
27 fn deref_mut(&mut self) -> &mut Self::Target {
28 &mut self.0
29 }
30}
31impl From<crate::W<EPINTFLAG_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<EPINTFLAG_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `TRCPT0` reader - Transfer Complete 0"]
38pub type TRCPT0_R = crate::BitReader<bool>;
39#[doc = "Field `TRCPT0` writer - Transfer Complete 0"]
40pub type TRCPT0_W<'a, const O: u8> = crate::BitWriter<'a, u8, EPINTFLAG_SPEC, bool, O>;
41#[doc = "Field `TRCPT1` reader - Transfer Complete 1"]
42pub type TRCPT1_R = crate::BitReader<bool>;
43#[doc = "Field `TRCPT1` writer - Transfer Complete 1"]
44pub type TRCPT1_W<'a, const O: u8> = crate::BitWriter<'a, u8, EPINTFLAG_SPEC, bool, O>;
45#[doc = "Field `TRFAIL0` reader - Error Flow 0"]
46pub type TRFAIL0_R = crate::BitReader<bool>;
47#[doc = "Field `TRFAIL0` writer - Error Flow 0"]
48pub type TRFAIL0_W<'a, const O: u8> = crate::BitWriter<'a, u8, EPINTFLAG_SPEC, bool, O>;
49#[doc = "Field `TRFAIL1` reader - Error Flow 1"]
50pub type TRFAIL1_R = crate::BitReader<bool>;
51#[doc = "Field `TRFAIL1` writer - Error Flow 1"]
52pub type TRFAIL1_W<'a, const O: u8> = crate::BitWriter<'a, u8, EPINTFLAG_SPEC, bool, O>;
53#[doc = "Field `RXSTP` reader - Received Setup"]
54pub type RXSTP_R = crate::BitReader<bool>;
55#[doc = "Field `RXSTP` writer - Received Setup"]
56pub type RXSTP_W<'a, const O: u8> = crate::BitWriter<'a, u8, EPINTFLAG_SPEC, bool, O>;
57#[doc = "Field `STALL0` reader - Stall 0 In/out"]
58pub type STALL0_R = crate::BitReader<bool>;
59#[doc = "Field `STALL0` writer - Stall 0 In/out"]
60pub type STALL0_W<'a, const O: u8> = crate::BitWriter<'a, u8, EPINTFLAG_SPEC, bool, O>;
61#[doc = "Field `STALL1` reader - Stall 1 In/out"]
62pub type STALL1_R = crate::BitReader<bool>;
63#[doc = "Field `STALL1` writer - Stall 1 In/out"]
64pub type STALL1_W<'a, const O: u8> = crate::BitWriter<'a, u8, EPINTFLAG_SPEC, bool, O>;
65impl R {
66 #[doc = "Bit 0 - Transfer Complete 0"]
67 #[inline(always)]
68 pub fn trcpt0(&self) -> TRCPT0_R {
69 TRCPT0_R::new((self.bits & 1) != 0)
70 }
71 #[doc = "Bit 1 - Transfer Complete 1"]
72 #[inline(always)]
73 pub fn trcpt1(&self) -> TRCPT1_R {
74 TRCPT1_R::new(((self.bits >> 1) & 1) != 0)
75 }
76 #[doc = "Bit 2 - Error Flow 0"]
77 #[inline(always)]
78 pub fn trfail0(&self) -> TRFAIL0_R {
79 TRFAIL0_R::new(((self.bits >> 2) & 1) != 0)
80 }
81 #[doc = "Bit 3 - Error Flow 1"]
82 #[inline(always)]
83 pub fn trfail1(&self) -> TRFAIL1_R {
84 TRFAIL1_R::new(((self.bits >> 3) & 1) != 0)
85 }
86 #[doc = "Bit 4 - Received Setup"]
87 #[inline(always)]
88 pub fn rxstp(&self) -> RXSTP_R {
89 RXSTP_R::new(((self.bits >> 4) & 1) != 0)
90 }
91 #[doc = "Bit 5 - Stall 0 In/out"]
92 #[inline(always)]
93 pub fn stall0(&self) -> STALL0_R {
94 STALL0_R::new(((self.bits >> 5) & 1) != 0)
95 }
96 #[doc = "Bit 6 - Stall 1 In/out"]
97 #[inline(always)]
98 pub fn stall1(&self) -> STALL1_R {
99 STALL1_R::new(((self.bits >> 6) & 1) != 0)
100 }
101}
102impl W {
103 #[doc = "Bit 0 - Transfer Complete 0"]
104 #[inline(always)]
105 #[must_use]
106 pub fn trcpt0(&mut self) -> TRCPT0_W<0> {
107 TRCPT0_W::new(self)
108 }
109 #[doc = "Bit 1 - Transfer Complete 1"]
110 #[inline(always)]
111 #[must_use]
112 pub fn trcpt1(&mut self) -> TRCPT1_W<1> {
113 TRCPT1_W::new(self)
114 }
115 #[doc = "Bit 2 - Error Flow 0"]
116 #[inline(always)]
117 #[must_use]
118 pub fn trfail0(&mut self) -> TRFAIL0_W<2> {
119 TRFAIL0_W::new(self)
120 }
121 #[doc = "Bit 3 - Error Flow 1"]
122 #[inline(always)]
123 #[must_use]
124 pub fn trfail1(&mut self) -> TRFAIL1_W<3> {
125 TRFAIL1_W::new(self)
126 }
127 #[doc = "Bit 4 - Received Setup"]
128 #[inline(always)]
129 #[must_use]
130 pub fn rxstp(&mut self) -> RXSTP_W<4> {
131 RXSTP_W::new(self)
132 }
133 #[doc = "Bit 5 - Stall 0 In/out"]
134 #[inline(always)]
135 #[must_use]
136 pub fn stall0(&mut self) -> STALL0_W<5> {
137 STALL0_W::new(self)
138 }
139 #[doc = "Bit 6 - Stall 1 In/out"]
140 #[inline(always)]
141 #[must_use]
142 pub fn stall1(&mut self) -> STALL1_W<6> {
143 STALL1_W::new(self)
144 }
145 #[doc = "Writes raw bits to the register."]
146 #[inline(always)]
147 pub unsafe fn bits(&mut self, bits: u8) -> &mut Self {
148 self.0.bits(bits);
149 self
150 }
151}
152#[doc = "DEVICE End Point Interrupt Flag\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [epintflag](index.html) module"]
153pub struct EPINTFLAG_SPEC;
154impl crate::RegisterSpec for EPINTFLAG_SPEC {
155 type Ux = u8;
156}
157#[doc = "`read()` method returns [epintflag::R](R) reader structure"]
158impl crate::Readable for EPINTFLAG_SPEC {
159 type Reader = R;
160}
161#[doc = "`write(|w| ..)` method takes [epintflag::W](W) writer structure"]
162impl crate::Writable for EPINTFLAG_SPEC {
163 type Writer = W;
164 const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
165 const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
166}
167#[doc = "`reset()` method sets EPINTFLAG%s to value 0"]
168impl crate::Resettable for EPINTFLAG_SPEC {
169 const RESET_VALUE: Self::Ux = 0;
170}