nrf52840_pac/qdec/
reportper.rs

1#[doc = "Register `REPORTPER` reader"]
2pub struct R(crate::R<REPORTPER_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<REPORTPER_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<REPORTPER_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<REPORTPER_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `REPORTPER` writer"]
17pub struct W(crate::W<REPORTPER_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<REPORTPER_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<REPORTPER_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<REPORTPER_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `REPORTPER` reader - Specifies the number of samples to be accumulated in the ACC register before the REPORTRDY and DBLRDY events can be generated"]
38pub type REPORTPER_R = crate::FieldReader<u8, REPORTPER_A>;
39#[doc = "Specifies the number of samples to be accumulated in the ACC register before the REPORTRDY and DBLRDY events can be generated\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41#[repr(u8)]
42pub enum REPORTPER_A {
43    #[doc = "0: 10 samples / report"]
44    _10SMPL = 0,
45    #[doc = "1: 40 samples / report"]
46    _40SMPL = 1,
47    #[doc = "2: 80 samples / report"]
48    _80SMPL = 2,
49    #[doc = "3: 120 samples / report"]
50    _120SMPL = 3,
51    #[doc = "4: 160 samples / report"]
52    _160SMPL = 4,
53    #[doc = "5: 200 samples / report"]
54    _200SMPL = 5,
55    #[doc = "6: 240 samples / report"]
56    _240SMPL = 6,
57    #[doc = "7: 280 samples / report"]
58    _280SMPL = 7,
59    #[doc = "8: 1 sample / report"]
60    _1SMPL = 8,
61}
62impl From<REPORTPER_A> for u8 {
63    #[inline(always)]
64    fn from(variant: REPORTPER_A) -> Self {
65        variant as _
66    }
67}
68impl REPORTPER_R {
69    #[doc = "Get enumerated values variant"]
70    #[inline(always)]
71    pub fn variant(&self) -> Option<REPORTPER_A> {
72        match self.bits {
73            0 => Some(REPORTPER_A::_10SMPL),
74            1 => Some(REPORTPER_A::_40SMPL),
75            2 => Some(REPORTPER_A::_80SMPL),
76            3 => Some(REPORTPER_A::_120SMPL),
77            4 => Some(REPORTPER_A::_160SMPL),
78            5 => Some(REPORTPER_A::_200SMPL),
79            6 => Some(REPORTPER_A::_240SMPL),
80            7 => Some(REPORTPER_A::_280SMPL),
81            8 => Some(REPORTPER_A::_1SMPL),
82            _ => None,
83        }
84    }
85    #[doc = "Checks if the value of the field is `_10SMPL`"]
86    #[inline(always)]
87    pub fn is_10smpl(&self) -> bool {
88        *self == REPORTPER_A::_10SMPL
89    }
90    #[doc = "Checks if the value of the field is `_40SMPL`"]
91    #[inline(always)]
92    pub fn is_40smpl(&self) -> bool {
93        *self == REPORTPER_A::_40SMPL
94    }
95    #[doc = "Checks if the value of the field is `_80SMPL`"]
96    #[inline(always)]
97    pub fn is_80smpl(&self) -> bool {
98        *self == REPORTPER_A::_80SMPL
99    }
100    #[doc = "Checks if the value of the field is `_120SMPL`"]
101    #[inline(always)]
102    pub fn is_120smpl(&self) -> bool {
103        *self == REPORTPER_A::_120SMPL
104    }
105    #[doc = "Checks if the value of the field is `_160SMPL`"]
106    #[inline(always)]
107    pub fn is_160smpl(&self) -> bool {
108        *self == REPORTPER_A::_160SMPL
109    }
110    #[doc = "Checks if the value of the field is `_200SMPL`"]
111    #[inline(always)]
112    pub fn is_200smpl(&self) -> bool {
113        *self == REPORTPER_A::_200SMPL
114    }
115    #[doc = "Checks if the value of the field is `_240SMPL`"]
116    #[inline(always)]
117    pub fn is_240smpl(&self) -> bool {
118        *self == REPORTPER_A::_240SMPL
119    }
120    #[doc = "Checks if the value of the field is `_280SMPL`"]
121    #[inline(always)]
122    pub fn is_280smpl(&self) -> bool {
123        *self == REPORTPER_A::_280SMPL
124    }
125    #[doc = "Checks if the value of the field is `_1SMPL`"]
126    #[inline(always)]
127    pub fn is_1smpl(&self) -> bool {
128        *self == REPORTPER_A::_1SMPL
129    }
130}
131#[doc = "Field `REPORTPER` writer - Specifies the number of samples to be accumulated in the ACC register before the REPORTRDY and DBLRDY events can be generated"]
132pub type REPORTPER_W<'a, const O: u8> =
133    crate::FieldWriter<'a, u32, REPORTPER_SPEC, u8, REPORTPER_A, 4, O>;
134impl<'a, const O: u8> REPORTPER_W<'a, O> {
135    #[doc = "10 samples / report"]
136    #[inline(always)]
137    pub fn _10smpl(self) -> &'a mut W {
138        self.variant(REPORTPER_A::_10SMPL)
139    }
140    #[doc = "40 samples / report"]
141    #[inline(always)]
142    pub fn _40smpl(self) -> &'a mut W {
143        self.variant(REPORTPER_A::_40SMPL)
144    }
145    #[doc = "80 samples / report"]
146    #[inline(always)]
147    pub fn _80smpl(self) -> &'a mut W {
148        self.variant(REPORTPER_A::_80SMPL)
149    }
150    #[doc = "120 samples / report"]
151    #[inline(always)]
152    pub fn _120smpl(self) -> &'a mut W {
153        self.variant(REPORTPER_A::_120SMPL)
154    }
155    #[doc = "160 samples / report"]
156    #[inline(always)]
157    pub fn _160smpl(self) -> &'a mut W {
158        self.variant(REPORTPER_A::_160SMPL)
159    }
160    #[doc = "200 samples / report"]
161    #[inline(always)]
162    pub fn _200smpl(self) -> &'a mut W {
163        self.variant(REPORTPER_A::_200SMPL)
164    }
165    #[doc = "240 samples / report"]
166    #[inline(always)]
167    pub fn _240smpl(self) -> &'a mut W {
168        self.variant(REPORTPER_A::_240SMPL)
169    }
170    #[doc = "280 samples / report"]
171    #[inline(always)]
172    pub fn _280smpl(self) -> &'a mut W {
173        self.variant(REPORTPER_A::_280SMPL)
174    }
175    #[doc = "1 sample / report"]
176    #[inline(always)]
177    pub fn _1smpl(self) -> &'a mut W {
178        self.variant(REPORTPER_A::_1SMPL)
179    }
180}
181impl R {
182    #[doc = "Bits 0:3 - Specifies the number of samples to be accumulated in the ACC register before the REPORTRDY and DBLRDY events can be generated"]
183    #[inline(always)]
184    pub fn reportper(&self) -> REPORTPER_R {
185        REPORTPER_R::new((self.bits & 0x0f) as u8)
186    }
187}
188impl W {
189    #[doc = "Bits 0:3 - Specifies the number of samples to be accumulated in the ACC register before the REPORTRDY and DBLRDY events can be generated"]
190    #[inline(always)]
191    pub fn reportper(&mut self) -> REPORTPER_W<0> {
192        REPORTPER_W::new(self)
193    }
194    #[doc = "Writes raw bits to the register."]
195    #[inline(always)]
196    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
197        self.0.bits(bits);
198        self
199    }
200}
201#[doc = "Number of samples to be taken before REPORTRDY and DBLRDY events can be generated\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 [reportper](index.html) module"]
202pub struct REPORTPER_SPEC;
203impl crate::RegisterSpec for REPORTPER_SPEC {
204    type Ux = u32;
205}
206#[doc = "`read()` method returns [reportper::R](R) reader structure"]
207impl crate::Readable for REPORTPER_SPEC {
208    type Reader = R;
209}
210#[doc = "`write(|w| ..)` method takes [reportper::W](W) writer structure"]
211impl crate::Writable for REPORTPER_SPEC {
212    type Writer = W;
213}
214#[doc = "`reset()` method sets REPORTPER to value 0"]
215impl crate::Resettable for REPORTPER_SPEC {
216    #[inline(always)]
217    fn reset_value() -> Self::Ux {
218        0
219    }
220}