nrf52840_pac/spim0/
intenset.rs

1#[doc = "Register `INTENSET` reader"]
2pub struct R(crate::R<INTENSET_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<INTENSET_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<INTENSET_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<INTENSET_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `INTENSET` writer"]
17pub struct W(crate::W<INTENSET_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<INTENSET_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<INTENSET_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<INTENSET_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `STOPPED` reader - Write '1' to enable interrupt for STOPPED event"]
38pub type STOPPED_R = crate::BitReader<STOPPED_A>;
39#[doc = "Write '1' to enable interrupt for STOPPED event\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41pub enum STOPPED_A {
42    #[doc = "0: Read: Disabled"]
43    DISABLED = 0,
44    #[doc = "1: Read: Enabled"]
45    ENABLED = 1,
46}
47impl From<STOPPED_A> for bool {
48    #[inline(always)]
49    fn from(variant: STOPPED_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl STOPPED_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> STOPPED_A {
57        match self.bits {
58            false => STOPPED_A::DISABLED,
59            true => STOPPED_A::ENABLED,
60        }
61    }
62    #[doc = "Checks if the value of the field is `DISABLED`"]
63    #[inline(always)]
64    pub fn is_disabled(&self) -> bool {
65        *self == STOPPED_A::DISABLED
66    }
67    #[doc = "Checks if the value of the field is `ENABLED`"]
68    #[inline(always)]
69    pub fn is_enabled(&self) -> bool {
70        *self == STOPPED_A::ENABLED
71    }
72}
73#[doc = "Write '1' to enable interrupt for STOPPED event\n\nValue on reset: 0"]
74#[derive(Clone, Copy, Debug, PartialEq)]
75pub enum STOPPED_AW {
76    #[doc = "1: Enable"]
77    SET = 1,
78}
79impl From<STOPPED_AW> for bool {
80    #[inline(always)]
81    fn from(variant: STOPPED_AW) -> Self {
82        variant as u8 != 0
83    }
84}
85#[doc = "Field `STOPPED` writer - Write '1' to enable interrupt for STOPPED event"]
86pub type STOPPED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, STOPPED_AW, O>;
87impl<'a, const O: u8> STOPPED_W<'a, O> {
88    #[doc = "Enable"]
89    #[inline(always)]
90    pub fn set(self) -> &'a mut W {
91        self.variant(STOPPED_AW::SET)
92    }
93}
94#[doc = "Field `ENDRX` reader - Write '1' to enable interrupt for ENDRX event"]
95pub type ENDRX_R = crate::BitReader<ENDRX_A>;
96#[doc = "Write '1' to enable interrupt for ENDRX event\n\nValue on reset: 0"]
97#[derive(Clone, Copy, Debug, PartialEq)]
98pub enum ENDRX_A {
99    #[doc = "0: Read: Disabled"]
100    DISABLED = 0,
101    #[doc = "1: Read: Enabled"]
102    ENABLED = 1,
103}
104impl From<ENDRX_A> for bool {
105    #[inline(always)]
106    fn from(variant: ENDRX_A) -> Self {
107        variant as u8 != 0
108    }
109}
110impl ENDRX_R {
111    #[doc = "Get enumerated values variant"]
112    #[inline(always)]
113    pub fn variant(&self) -> ENDRX_A {
114        match self.bits {
115            false => ENDRX_A::DISABLED,
116            true => ENDRX_A::ENABLED,
117        }
118    }
119    #[doc = "Checks if the value of the field is `DISABLED`"]
120    #[inline(always)]
121    pub fn is_disabled(&self) -> bool {
122        *self == ENDRX_A::DISABLED
123    }
124    #[doc = "Checks if the value of the field is `ENABLED`"]
125    #[inline(always)]
126    pub fn is_enabled(&self) -> bool {
127        *self == ENDRX_A::ENABLED
128    }
129}
130#[doc = "Write '1' to enable interrupt for ENDRX event\n\nValue on reset: 0"]
131#[derive(Clone, Copy, Debug, PartialEq)]
132pub enum ENDRX_AW {
133    #[doc = "1: Enable"]
134    SET = 1,
135}
136impl From<ENDRX_AW> for bool {
137    #[inline(always)]
138    fn from(variant: ENDRX_AW) -> Self {
139        variant as u8 != 0
140    }
141}
142#[doc = "Field `ENDRX` writer - Write '1' to enable interrupt for ENDRX event"]
143pub type ENDRX_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, ENDRX_AW, O>;
144impl<'a, const O: u8> ENDRX_W<'a, O> {
145    #[doc = "Enable"]
146    #[inline(always)]
147    pub fn set(self) -> &'a mut W {
148        self.variant(ENDRX_AW::SET)
149    }
150}
151#[doc = "Field `END` reader - Write '1' to enable interrupt for END event"]
152pub type END_R = crate::BitReader<END_A>;
153#[doc = "Write '1' to enable interrupt for END event\n\nValue on reset: 0"]
154#[derive(Clone, Copy, Debug, PartialEq)]
155pub enum END_A {
156    #[doc = "0: Read: Disabled"]
157    DISABLED = 0,
158    #[doc = "1: Read: Enabled"]
159    ENABLED = 1,
160}
161impl From<END_A> for bool {
162    #[inline(always)]
163    fn from(variant: END_A) -> Self {
164        variant as u8 != 0
165    }
166}
167impl END_R {
168    #[doc = "Get enumerated values variant"]
169    #[inline(always)]
170    pub fn variant(&self) -> END_A {
171        match self.bits {
172            false => END_A::DISABLED,
173            true => END_A::ENABLED,
174        }
175    }
176    #[doc = "Checks if the value of the field is `DISABLED`"]
177    #[inline(always)]
178    pub fn is_disabled(&self) -> bool {
179        *self == END_A::DISABLED
180    }
181    #[doc = "Checks if the value of the field is `ENABLED`"]
182    #[inline(always)]
183    pub fn is_enabled(&self) -> bool {
184        *self == END_A::ENABLED
185    }
186}
187#[doc = "Write '1' to enable interrupt for END event\n\nValue on reset: 0"]
188#[derive(Clone, Copy, Debug, PartialEq)]
189pub enum END_AW {
190    #[doc = "1: Enable"]
191    SET = 1,
192}
193impl From<END_AW> for bool {
194    #[inline(always)]
195    fn from(variant: END_AW) -> Self {
196        variant as u8 != 0
197    }
198}
199#[doc = "Field `END` writer - Write '1' to enable interrupt for END event"]
200pub type END_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, END_AW, O>;
201impl<'a, const O: u8> END_W<'a, O> {
202    #[doc = "Enable"]
203    #[inline(always)]
204    pub fn set(self) -> &'a mut W {
205        self.variant(END_AW::SET)
206    }
207}
208#[doc = "Field `ENDTX` reader - Write '1' to enable interrupt for ENDTX event"]
209pub type ENDTX_R = crate::BitReader<ENDTX_A>;
210#[doc = "Write '1' to enable interrupt for ENDTX event\n\nValue on reset: 0"]
211#[derive(Clone, Copy, Debug, PartialEq)]
212pub enum ENDTX_A {
213    #[doc = "0: Read: Disabled"]
214    DISABLED = 0,
215    #[doc = "1: Read: Enabled"]
216    ENABLED = 1,
217}
218impl From<ENDTX_A> for bool {
219    #[inline(always)]
220    fn from(variant: ENDTX_A) -> Self {
221        variant as u8 != 0
222    }
223}
224impl ENDTX_R {
225    #[doc = "Get enumerated values variant"]
226    #[inline(always)]
227    pub fn variant(&self) -> ENDTX_A {
228        match self.bits {
229            false => ENDTX_A::DISABLED,
230            true => ENDTX_A::ENABLED,
231        }
232    }
233    #[doc = "Checks if the value of the field is `DISABLED`"]
234    #[inline(always)]
235    pub fn is_disabled(&self) -> bool {
236        *self == ENDTX_A::DISABLED
237    }
238    #[doc = "Checks if the value of the field is `ENABLED`"]
239    #[inline(always)]
240    pub fn is_enabled(&self) -> bool {
241        *self == ENDTX_A::ENABLED
242    }
243}
244#[doc = "Write '1' to enable interrupt for ENDTX event\n\nValue on reset: 0"]
245#[derive(Clone, Copy, Debug, PartialEq)]
246pub enum ENDTX_AW {
247    #[doc = "1: Enable"]
248    SET = 1,
249}
250impl From<ENDTX_AW> for bool {
251    #[inline(always)]
252    fn from(variant: ENDTX_AW) -> Self {
253        variant as u8 != 0
254    }
255}
256#[doc = "Field `ENDTX` writer - Write '1' to enable interrupt for ENDTX event"]
257pub type ENDTX_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, ENDTX_AW, O>;
258impl<'a, const O: u8> ENDTX_W<'a, O> {
259    #[doc = "Enable"]
260    #[inline(always)]
261    pub fn set(self) -> &'a mut W {
262        self.variant(ENDTX_AW::SET)
263    }
264}
265#[doc = "Field `STARTED` reader - Write '1' to enable interrupt for STARTED event"]
266pub type STARTED_R = crate::BitReader<STARTED_A>;
267#[doc = "Write '1' to enable interrupt for STARTED event\n\nValue on reset: 0"]
268#[derive(Clone, Copy, Debug, PartialEq)]
269pub enum STARTED_A {
270    #[doc = "0: Read: Disabled"]
271    DISABLED = 0,
272    #[doc = "1: Read: Enabled"]
273    ENABLED = 1,
274}
275impl From<STARTED_A> for bool {
276    #[inline(always)]
277    fn from(variant: STARTED_A) -> Self {
278        variant as u8 != 0
279    }
280}
281impl STARTED_R {
282    #[doc = "Get enumerated values variant"]
283    #[inline(always)]
284    pub fn variant(&self) -> STARTED_A {
285        match self.bits {
286            false => STARTED_A::DISABLED,
287            true => STARTED_A::ENABLED,
288        }
289    }
290    #[doc = "Checks if the value of the field is `DISABLED`"]
291    #[inline(always)]
292    pub fn is_disabled(&self) -> bool {
293        *self == STARTED_A::DISABLED
294    }
295    #[doc = "Checks if the value of the field is `ENABLED`"]
296    #[inline(always)]
297    pub fn is_enabled(&self) -> bool {
298        *self == STARTED_A::ENABLED
299    }
300}
301#[doc = "Write '1' to enable interrupt for STARTED event\n\nValue on reset: 0"]
302#[derive(Clone, Copy, Debug, PartialEq)]
303pub enum STARTED_AW {
304    #[doc = "1: Enable"]
305    SET = 1,
306}
307impl From<STARTED_AW> for bool {
308    #[inline(always)]
309    fn from(variant: STARTED_AW) -> Self {
310        variant as u8 != 0
311    }
312}
313#[doc = "Field `STARTED` writer - Write '1' to enable interrupt for STARTED event"]
314pub type STARTED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, STARTED_AW, O>;
315impl<'a, const O: u8> STARTED_W<'a, O> {
316    #[doc = "Enable"]
317    #[inline(always)]
318    pub fn set(self) -> &'a mut W {
319        self.variant(STARTED_AW::SET)
320    }
321}
322impl R {
323    #[doc = "Bit 1 - Write '1' to enable interrupt for STOPPED event"]
324    #[inline(always)]
325    pub fn stopped(&self) -> STOPPED_R {
326        STOPPED_R::new(((self.bits >> 1) & 1) != 0)
327    }
328    #[doc = "Bit 4 - Write '1' to enable interrupt for ENDRX event"]
329    #[inline(always)]
330    pub fn endrx(&self) -> ENDRX_R {
331        ENDRX_R::new(((self.bits >> 4) & 1) != 0)
332    }
333    #[doc = "Bit 6 - Write '1' to enable interrupt for END event"]
334    #[inline(always)]
335    pub fn end(&self) -> END_R {
336        END_R::new(((self.bits >> 6) & 1) != 0)
337    }
338    #[doc = "Bit 8 - Write '1' to enable interrupt for ENDTX event"]
339    #[inline(always)]
340    pub fn endtx(&self) -> ENDTX_R {
341        ENDTX_R::new(((self.bits >> 8) & 1) != 0)
342    }
343    #[doc = "Bit 19 - Write '1' to enable interrupt for STARTED event"]
344    #[inline(always)]
345    pub fn started(&self) -> STARTED_R {
346        STARTED_R::new(((self.bits >> 19) & 1) != 0)
347    }
348}
349impl W {
350    #[doc = "Bit 1 - Write '1' to enable interrupt for STOPPED event"]
351    #[inline(always)]
352    pub fn stopped(&mut self) -> STOPPED_W<1> {
353        STOPPED_W::new(self)
354    }
355    #[doc = "Bit 4 - Write '1' to enable interrupt for ENDRX event"]
356    #[inline(always)]
357    pub fn endrx(&mut self) -> ENDRX_W<4> {
358        ENDRX_W::new(self)
359    }
360    #[doc = "Bit 6 - Write '1' to enable interrupt for END event"]
361    #[inline(always)]
362    pub fn end(&mut self) -> END_W<6> {
363        END_W::new(self)
364    }
365    #[doc = "Bit 8 - Write '1' to enable interrupt for ENDTX event"]
366    #[inline(always)]
367    pub fn endtx(&mut self) -> ENDTX_W<8> {
368        ENDTX_W::new(self)
369    }
370    #[doc = "Bit 19 - Write '1' to enable interrupt for STARTED event"]
371    #[inline(always)]
372    pub fn started(&mut self) -> STARTED_W<19> {
373        STARTED_W::new(self)
374    }
375    #[doc = "Writes raw bits to the register."]
376    #[inline(always)]
377    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
378        self.0.bits(bits);
379        self
380    }
381}
382#[doc = "Enable interrupt\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 [intenset](index.html) module"]
383pub struct INTENSET_SPEC;
384impl crate::RegisterSpec for INTENSET_SPEC {
385    type Ux = u32;
386}
387#[doc = "`read()` method returns [intenset::R](R) reader structure"]
388impl crate::Readable for INTENSET_SPEC {
389    type Reader = R;
390}
391#[doc = "`write(|w| ..)` method takes [intenset::W](W) writer structure"]
392impl crate::Writable for INTENSET_SPEC {
393    type Writer = W;
394}
395#[doc = "`reset()` method sets INTENSET to value 0"]
396impl crate::Resettable for INTENSET_SPEC {
397    #[inline(always)]
398    fn reset_value() -> Self::Ux {
399        0
400    }
401}