nrf52840_pac/uarte0/
shorts.rs

1#[doc = "Register `SHORTS` reader"]
2pub struct R(crate::R<SHORTS_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<SHORTS_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<SHORTS_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<SHORTS_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `SHORTS` writer"]
17pub struct W(crate::W<SHORTS_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<SHORTS_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<SHORTS_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<SHORTS_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `ENDRX_STARTRX` reader - Shortcut between ENDRX event and STARTRX task"]
38pub type ENDRX_STARTRX_R = crate::BitReader<ENDRX_STARTRX_A>;
39#[doc = "Shortcut between ENDRX event and STARTRX task\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41pub enum ENDRX_STARTRX_A {
42    #[doc = "0: Disable shortcut"]
43    DISABLED = 0,
44    #[doc = "1: Enable shortcut"]
45    ENABLED = 1,
46}
47impl From<ENDRX_STARTRX_A> for bool {
48    #[inline(always)]
49    fn from(variant: ENDRX_STARTRX_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl ENDRX_STARTRX_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> ENDRX_STARTRX_A {
57        match self.bits {
58            false => ENDRX_STARTRX_A::DISABLED,
59            true => ENDRX_STARTRX_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 == ENDRX_STARTRX_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 == ENDRX_STARTRX_A::ENABLED
71    }
72}
73#[doc = "Field `ENDRX_STARTRX` writer - Shortcut between ENDRX event and STARTRX task"]
74pub type ENDRX_STARTRX_W<'a, const O: u8> =
75    crate::BitWriter<'a, u32, SHORTS_SPEC, ENDRX_STARTRX_A, O>;
76impl<'a, const O: u8> ENDRX_STARTRX_W<'a, O> {
77    #[doc = "Disable shortcut"]
78    #[inline(always)]
79    pub fn disabled(self) -> &'a mut W {
80        self.variant(ENDRX_STARTRX_A::DISABLED)
81    }
82    #[doc = "Enable shortcut"]
83    #[inline(always)]
84    pub fn enabled(self) -> &'a mut W {
85        self.variant(ENDRX_STARTRX_A::ENABLED)
86    }
87}
88#[doc = "Field `ENDRX_STOPRX` reader - Shortcut between ENDRX event and STOPRX task"]
89pub type ENDRX_STOPRX_R = crate::BitReader<ENDRX_STOPRX_A>;
90#[doc = "Shortcut between ENDRX event and STOPRX task\n\nValue on reset: 0"]
91#[derive(Clone, Copy, Debug, PartialEq)]
92pub enum ENDRX_STOPRX_A {
93    #[doc = "0: Disable shortcut"]
94    DISABLED = 0,
95    #[doc = "1: Enable shortcut"]
96    ENABLED = 1,
97}
98impl From<ENDRX_STOPRX_A> for bool {
99    #[inline(always)]
100    fn from(variant: ENDRX_STOPRX_A) -> Self {
101        variant as u8 != 0
102    }
103}
104impl ENDRX_STOPRX_R {
105    #[doc = "Get enumerated values variant"]
106    #[inline(always)]
107    pub fn variant(&self) -> ENDRX_STOPRX_A {
108        match self.bits {
109            false => ENDRX_STOPRX_A::DISABLED,
110            true => ENDRX_STOPRX_A::ENABLED,
111        }
112    }
113    #[doc = "Checks if the value of the field is `DISABLED`"]
114    #[inline(always)]
115    pub fn is_disabled(&self) -> bool {
116        *self == ENDRX_STOPRX_A::DISABLED
117    }
118    #[doc = "Checks if the value of the field is `ENABLED`"]
119    #[inline(always)]
120    pub fn is_enabled(&self) -> bool {
121        *self == ENDRX_STOPRX_A::ENABLED
122    }
123}
124#[doc = "Field `ENDRX_STOPRX` writer - Shortcut between ENDRX event and STOPRX task"]
125pub type ENDRX_STOPRX_W<'a, const O: u8> =
126    crate::BitWriter<'a, u32, SHORTS_SPEC, ENDRX_STOPRX_A, O>;
127impl<'a, const O: u8> ENDRX_STOPRX_W<'a, O> {
128    #[doc = "Disable shortcut"]
129    #[inline(always)]
130    pub fn disabled(self) -> &'a mut W {
131        self.variant(ENDRX_STOPRX_A::DISABLED)
132    }
133    #[doc = "Enable shortcut"]
134    #[inline(always)]
135    pub fn enabled(self) -> &'a mut W {
136        self.variant(ENDRX_STOPRX_A::ENABLED)
137    }
138}
139impl R {
140    #[doc = "Bit 5 - Shortcut between ENDRX event and STARTRX task"]
141    #[inline(always)]
142    pub fn endrx_startrx(&self) -> ENDRX_STARTRX_R {
143        ENDRX_STARTRX_R::new(((self.bits >> 5) & 1) != 0)
144    }
145    #[doc = "Bit 6 - Shortcut between ENDRX event and STOPRX task"]
146    #[inline(always)]
147    pub fn endrx_stoprx(&self) -> ENDRX_STOPRX_R {
148        ENDRX_STOPRX_R::new(((self.bits >> 6) & 1) != 0)
149    }
150}
151impl W {
152    #[doc = "Bit 5 - Shortcut between ENDRX event and STARTRX task"]
153    #[inline(always)]
154    pub fn endrx_startrx(&mut self) -> ENDRX_STARTRX_W<5> {
155        ENDRX_STARTRX_W::new(self)
156    }
157    #[doc = "Bit 6 - Shortcut between ENDRX event and STOPRX task"]
158    #[inline(always)]
159    pub fn endrx_stoprx(&mut self) -> ENDRX_STOPRX_W<6> {
160        ENDRX_STOPRX_W::new(self)
161    }
162    #[doc = "Writes raw bits to the register."]
163    #[inline(always)]
164    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
165        self.0.bits(bits);
166        self
167    }
168}
169#[doc = "Shortcut register\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 [shorts](index.html) module"]
170pub struct SHORTS_SPEC;
171impl crate::RegisterSpec for SHORTS_SPEC {
172    type Ux = u32;
173}
174#[doc = "`read()` method returns [shorts::R](R) reader structure"]
175impl crate::Readable for SHORTS_SPEC {
176    type Reader = R;
177}
178#[doc = "`write(|w| ..)` method takes [shorts::W](W) writer structure"]
179impl crate::Writable for SHORTS_SPEC {
180    type Writer = W;
181}
182#[doc = "`reset()` method sets SHORTS to value 0"]
183impl crate::Resettable for SHORTS_SPEC {
184    #[inline(always)]
185    fn reset_value() -> Self::Ux {
186        0
187    }
188}