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 `HFCLKSTARTED` reader - Write '1' to enable interrupt for HFCLKSTARTED event"]
38pub type HFCLKSTARTED_R = crate::BitReader<HFCLKSTARTED_A>;
39#[doc = "Write '1' to enable interrupt for HFCLKSTARTED event\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41pub enum HFCLKSTARTED_A {
42 #[doc = "0: Read: Disabled"]
43 DISABLED = 0,
44 #[doc = "1: Read: Enabled"]
45 ENABLED = 1,
46}
47impl From<HFCLKSTARTED_A> for bool {
48 #[inline(always)]
49 fn from(variant: HFCLKSTARTED_A) -> Self {
50 variant as u8 != 0
51 }
52}
53impl HFCLKSTARTED_R {
54 #[doc = "Get enumerated values variant"]
55 #[inline(always)]
56 pub fn variant(&self) -> HFCLKSTARTED_A {
57 match self.bits {
58 false => HFCLKSTARTED_A::DISABLED,
59 true => HFCLKSTARTED_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 == HFCLKSTARTED_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 == HFCLKSTARTED_A::ENABLED
71 }
72}
73#[doc = "Write '1' to enable interrupt for HFCLKSTARTED event\n\nValue on reset: 0"]
74#[derive(Clone, Copy, Debug, PartialEq)]
75pub enum HFCLKSTARTED_AW {
76 #[doc = "1: Enable"]
77 SET = 1,
78}
79impl From<HFCLKSTARTED_AW> for bool {
80 #[inline(always)]
81 fn from(variant: HFCLKSTARTED_AW) -> Self {
82 variant as u8 != 0
83 }
84}
85#[doc = "Field `HFCLKSTARTED` writer - Write '1' to enable interrupt for HFCLKSTARTED event"]
86pub type HFCLKSTARTED_W<'a, const O: u8> =
87 crate::BitWriter<'a, u32, INTENSET_SPEC, HFCLKSTARTED_AW, O>;
88impl<'a, const O: u8> HFCLKSTARTED_W<'a, O> {
89 #[doc = "Enable"]
90 #[inline(always)]
91 pub fn set(self) -> &'a mut W {
92 self.variant(HFCLKSTARTED_AW::SET)
93 }
94}
95#[doc = "Field `LFCLKSTARTED` reader - Write '1' to enable interrupt for LFCLKSTARTED event"]
96pub type LFCLKSTARTED_R = crate::BitReader<LFCLKSTARTED_A>;
97#[doc = "Write '1' to enable interrupt for LFCLKSTARTED event\n\nValue on reset: 0"]
98#[derive(Clone, Copy, Debug, PartialEq)]
99pub enum LFCLKSTARTED_A {
100 #[doc = "0: Read: Disabled"]
101 DISABLED = 0,
102 #[doc = "1: Read: Enabled"]
103 ENABLED = 1,
104}
105impl From<LFCLKSTARTED_A> for bool {
106 #[inline(always)]
107 fn from(variant: LFCLKSTARTED_A) -> Self {
108 variant as u8 != 0
109 }
110}
111impl LFCLKSTARTED_R {
112 #[doc = "Get enumerated values variant"]
113 #[inline(always)]
114 pub fn variant(&self) -> LFCLKSTARTED_A {
115 match self.bits {
116 false => LFCLKSTARTED_A::DISABLED,
117 true => LFCLKSTARTED_A::ENABLED,
118 }
119 }
120 #[doc = "Checks if the value of the field is `DISABLED`"]
121 #[inline(always)]
122 pub fn is_disabled(&self) -> bool {
123 *self == LFCLKSTARTED_A::DISABLED
124 }
125 #[doc = "Checks if the value of the field is `ENABLED`"]
126 #[inline(always)]
127 pub fn is_enabled(&self) -> bool {
128 *self == LFCLKSTARTED_A::ENABLED
129 }
130}
131#[doc = "Write '1' to enable interrupt for LFCLKSTARTED event\n\nValue on reset: 0"]
132#[derive(Clone, Copy, Debug, PartialEq)]
133pub enum LFCLKSTARTED_AW {
134 #[doc = "1: Enable"]
135 SET = 1,
136}
137impl From<LFCLKSTARTED_AW> for bool {
138 #[inline(always)]
139 fn from(variant: LFCLKSTARTED_AW) -> Self {
140 variant as u8 != 0
141 }
142}
143#[doc = "Field `LFCLKSTARTED` writer - Write '1' to enable interrupt for LFCLKSTARTED event"]
144pub type LFCLKSTARTED_W<'a, const O: u8> =
145 crate::BitWriter<'a, u32, INTENSET_SPEC, LFCLKSTARTED_AW, O>;
146impl<'a, const O: u8> LFCLKSTARTED_W<'a, O> {
147 #[doc = "Enable"]
148 #[inline(always)]
149 pub fn set(self) -> &'a mut W {
150 self.variant(LFCLKSTARTED_AW::SET)
151 }
152}
153#[doc = "Field `DONE` reader - Write '1' to enable interrupt for DONE event"]
154pub type DONE_R = crate::BitReader<DONE_A>;
155#[doc = "Write '1' to enable interrupt for DONE event\n\nValue on reset: 0"]
156#[derive(Clone, Copy, Debug, PartialEq)]
157pub enum DONE_A {
158 #[doc = "0: Read: Disabled"]
159 DISABLED = 0,
160 #[doc = "1: Read: Enabled"]
161 ENABLED = 1,
162}
163impl From<DONE_A> for bool {
164 #[inline(always)]
165 fn from(variant: DONE_A) -> Self {
166 variant as u8 != 0
167 }
168}
169impl DONE_R {
170 #[doc = "Get enumerated values variant"]
171 #[inline(always)]
172 pub fn variant(&self) -> DONE_A {
173 match self.bits {
174 false => DONE_A::DISABLED,
175 true => DONE_A::ENABLED,
176 }
177 }
178 #[doc = "Checks if the value of the field is `DISABLED`"]
179 #[inline(always)]
180 pub fn is_disabled(&self) -> bool {
181 *self == DONE_A::DISABLED
182 }
183 #[doc = "Checks if the value of the field is `ENABLED`"]
184 #[inline(always)]
185 pub fn is_enabled(&self) -> bool {
186 *self == DONE_A::ENABLED
187 }
188}
189#[doc = "Write '1' to enable interrupt for DONE event\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq)]
191pub enum DONE_AW {
192 #[doc = "1: Enable"]
193 SET = 1,
194}
195impl From<DONE_AW> for bool {
196 #[inline(always)]
197 fn from(variant: DONE_AW) -> Self {
198 variant as u8 != 0
199 }
200}
201#[doc = "Field `DONE` writer - Write '1' to enable interrupt for DONE event"]
202pub type DONE_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, DONE_AW, O>;
203impl<'a, const O: u8> DONE_W<'a, O> {
204 #[doc = "Enable"]
205 #[inline(always)]
206 pub fn set(self) -> &'a mut W {
207 self.variant(DONE_AW::SET)
208 }
209}
210#[doc = "Field `CTTO` reader - Write '1' to enable interrupt for CTTO event"]
211pub type CTTO_R = crate::BitReader<CTTO_A>;
212#[doc = "Write '1' to enable interrupt for CTTO event\n\nValue on reset: 0"]
213#[derive(Clone, Copy, Debug, PartialEq)]
214pub enum CTTO_A {
215 #[doc = "0: Read: Disabled"]
216 DISABLED = 0,
217 #[doc = "1: Read: Enabled"]
218 ENABLED = 1,
219}
220impl From<CTTO_A> for bool {
221 #[inline(always)]
222 fn from(variant: CTTO_A) -> Self {
223 variant as u8 != 0
224 }
225}
226impl CTTO_R {
227 #[doc = "Get enumerated values variant"]
228 #[inline(always)]
229 pub fn variant(&self) -> CTTO_A {
230 match self.bits {
231 false => CTTO_A::DISABLED,
232 true => CTTO_A::ENABLED,
233 }
234 }
235 #[doc = "Checks if the value of the field is `DISABLED`"]
236 #[inline(always)]
237 pub fn is_disabled(&self) -> bool {
238 *self == CTTO_A::DISABLED
239 }
240 #[doc = "Checks if the value of the field is `ENABLED`"]
241 #[inline(always)]
242 pub fn is_enabled(&self) -> bool {
243 *self == CTTO_A::ENABLED
244 }
245}
246#[doc = "Write '1' to enable interrupt for CTTO event\n\nValue on reset: 0"]
247#[derive(Clone, Copy, Debug, PartialEq)]
248pub enum CTTO_AW {
249 #[doc = "1: Enable"]
250 SET = 1,
251}
252impl From<CTTO_AW> for bool {
253 #[inline(always)]
254 fn from(variant: CTTO_AW) -> Self {
255 variant as u8 != 0
256 }
257}
258#[doc = "Field `CTTO` writer - Write '1' to enable interrupt for CTTO event"]
259pub type CTTO_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, CTTO_AW, O>;
260impl<'a, const O: u8> CTTO_W<'a, O> {
261 #[doc = "Enable"]
262 #[inline(always)]
263 pub fn set(self) -> &'a mut W {
264 self.variant(CTTO_AW::SET)
265 }
266}
267#[doc = "Field `CTSTARTED` reader - Write '1' to enable interrupt for CTSTARTED event"]
268pub type CTSTARTED_R = crate::BitReader<CTSTARTED_A>;
269#[doc = "Write '1' to enable interrupt for CTSTARTED event\n\nValue on reset: 0"]
270#[derive(Clone, Copy, Debug, PartialEq)]
271pub enum CTSTARTED_A {
272 #[doc = "0: Read: Disabled"]
273 DISABLED = 0,
274 #[doc = "1: Read: Enabled"]
275 ENABLED = 1,
276}
277impl From<CTSTARTED_A> for bool {
278 #[inline(always)]
279 fn from(variant: CTSTARTED_A) -> Self {
280 variant as u8 != 0
281 }
282}
283impl CTSTARTED_R {
284 #[doc = "Get enumerated values variant"]
285 #[inline(always)]
286 pub fn variant(&self) -> CTSTARTED_A {
287 match self.bits {
288 false => CTSTARTED_A::DISABLED,
289 true => CTSTARTED_A::ENABLED,
290 }
291 }
292 #[doc = "Checks if the value of the field is `DISABLED`"]
293 #[inline(always)]
294 pub fn is_disabled(&self) -> bool {
295 *self == CTSTARTED_A::DISABLED
296 }
297 #[doc = "Checks if the value of the field is `ENABLED`"]
298 #[inline(always)]
299 pub fn is_enabled(&self) -> bool {
300 *self == CTSTARTED_A::ENABLED
301 }
302}
303#[doc = "Write '1' to enable interrupt for CTSTARTED event\n\nValue on reset: 0"]
304#[derive(Clone, Copy, Debug, PartialEq)]
305pub enum CTSTARTED_AW {
306 #[doc = "1: Enable"]
307 SET = 1,
308}
309impl From<CTSTARTED_AW> for bool {
310 #[inline(always)]
311 fn from(variant: CTSTARTED_AW) -> Self {
312 variant as u8 != 0
313 }
314}
315#[doc = "Field `CTSTARTED` writer - Write '1' to enable interrupt for CTSTARTED event"]
316pub type CTSTARTED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, CTSTARTED_AW, O>;
317impl<'a, const O: u8> CTSTARTED_W<'a, O> {
318 #[doc = "Enable"]
319 #[inline(always)]
320 pub fn set(self) -> &'a mut W {
321 self.variant(CTSTARTED_AW::SET)
322 }
323}
324#[doc = "Field `CTSTOPPED` reader - Write '1' to enable interrupt for CTSTOPPED event"]
325pub type CTSTOPPED_R = crate::BitReader<CTSTOPPED_A>;
326#[doc = "Write '1' to enable interrupt for CTSTOPPED event\n\nValue on reset: 0"]
327#[derive(Clone, Copy, Debug, PartialEq)]
328pub enum CTSTOPPED_A {
329 #[doc = "0: Read: Disabled"]
330 DISABLED = 0,
331 #[doc = "1: Read: Enabled"]
332 ENABLED = 1,
333}
334impl From<CTSTOPPED_A> for bool {
335 #[inline(always)]
336 fn from(variant: CTSTOPPED_A) -> Self {
337 variant as u8 != 0
338 }
339}
340impl CTSTOPPED_R {
341 #[doc = "Get enumerated values variant"]
342 #[inline(always)]
343 pub fn variant(&self) -> CTSTOPPED_A {
344 match self.bits {
345 false => CTSTOPPED_A::DISABLED,
346 true => CTSTOPPED_A::ENABLED,
347 }
348 }
349 #[doc = "Checks if the value of the field is `DISABLED`"]
350 #[inline(always)]
351 pub fn is_disabled(&self) -> bool {
352 *self == CTSTOPPED_A::DISABLED
353 }
354 #[doc = "Checks if the value of the field is `ENABLED`"]
355 #[inline(always)]
356 pub fn is_enabled(&self) -> bool {
357 *self == CTSTOPPED_A::ENABLED
358 }
359}
360#[doc = "Write '1' to enable interrupt for CTSTOPPED event\n\nValue on reset: 0"]
361#[derive(Clone, Copy, Debug, PartialEq)]
362pub enum CTSTOPPED_AW {
363 #[doc = "1: Enable"]
364 SET = 1,
365}
366impl From<CTSTOPPED_AW> for bool {
367 #[inline(always)]
368 fn from(variant: CTSTOPPED_AW) -> Self {
369 variant as u8 != 0
370 }
371}
372#[doc = "Field `CTSTOPPED` writer - Write '1' to enable interrupt for CTSTOPPED event"]
373pub type CTSTOPPED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENSET_SPEC, CTSTOPPED_AW, O>;
374impl<'a, const O: u8> CTSTOPPED_W<'a, O> {
375 #[doc = "Enable"]
376 #[inline(always)]
377 pub fn set(self) -> &'a mut W {
378 self.variant(CTSTOPPED_AW::SET)
379 }
380}
381impl R {
382 #[doc = "Bit 0 - Write '1' to enable interrupt for HFCLKSTARTED event"]
383 #[inline(always)]
384 pub fn hfclkstarted(&self) -> HFCLKSTARTED_R {
385 HFCLKSTARTED_R::new((self.bits & 1) != 0)
386 }
387 #[doc = "Bit 1 - Write '1' to enable interrupt for LFCLKSTARTED event"]
388 #[inline(always)]
389 pub fn lfclkstarted(&self) -> LFCLKSTARTED_R {
390 LFCLKSTARTED_R::new(((self.bits >> 1) & 1) != 0)
391 }
392 #[doc = "Bit 3 - Write '1' to enable interrupt for DONE event"]
393 #[inline(always)]
394 pub fn done(&self) -> DONE_R {
395 DONE_R::new(((self.bits >> 3) & 1) != 0)
396 }
397 #[doc = "Bit 4 - Write '1' to enable interrupt for CTTO event"]
398 #[inline(always)]
399 pub fn ctto(&self) -> CTTO_R {
400 CTTO_R::new(((self.bits >> 4) & 1) != 0)
401 }
402 #[doc = "Bit 10 - Write '1' to enable interrupt for CTSTARTED event"]
403 #[inline(always)]
404 pub fn ctstarted(&self) -> CTSTARTED_R {
405 CTSTARTED_R::new(((self.bits >> 10) & 1) != 0)
406 }
407 #[doc = "Bit 11 - Write '1' to enable interrupt for CTSTOPPED event"]
408 #[inline(always)]
409 pub fn ctstopped(&self) -> CTSTOPPED_R {
410 CTSTOPPED_R::new(((self.bits >> 11) & 1) != 0)
411 }
412}
413impl W {
414 #[doc = "Bit 0 - Write '1' to enable interrupt for HFCLKSTARTED event"]
415 #[inline(always)]
416 pub fn hfclkstarted(&mut self) -> HFCLKSTARTED_W<0> {
417 HFCLKSTARTED_W::new(self)
418 }
419 #[doc = "Bit 1 - Write '1' to enable interrupt for LFCLKSTARTED event"]
420 #[inline(always)]
421 pub fn lfclkstarted(&mut self) -> LFCLKSTARTED_W<1> {
422 LFCLKSTARTED_W::new(self)
423 }
424 #[doc = "Bit 3 - Write '1' to enable interrupt for DONE event"]
425 #[inline(always)]
426 pub fn done(&mut self) -> DONE_W<3> {
427 DONE_W::new(self)
428 }
429 #[doc = "Bit 4 - Write '1' to enable interrupt for CTTO event"]
430 #[inline(always)]
431 pub fn ctto(&mut self) -> CTTO_W<4> {
432 CTTO_W::new(self)
433 }
434 #[doc = "Bit 10 - Write '1' to enable interrupt for CTSTARTED event"]
435 #[inline(always)]
436 pub fn ctstarted(&mut self) -> CTSTARTED_W<10> {
437 CTSTARTED_W::new(self)
438 }
439 #[doc = "Bit 11 - Write '1' to enable interrupt for CTSTOPPED event"]
440 #[inline(always)]
441 pub fn ctstopped(&mut self) -> CTSTOPPED_W<11> {
442 CTSTOPPED_W::new(self)
443 }
444 #[doc = "Writes raw bits to the register."]
445 #[inline(always)]
446 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
447 self.0.bits(bits);
448 self
449 }
450}
451#[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"]
452pub struct INTENSET_SPEC;
453impl crate::RegisterSpec for INTENSET_SPEC {
454 type Ux = u32;
455}
456#[doc = "`read()` method returns [intenset::R](R) reader structure"]
457impl crate::Readable for INTENSET_SPEC {
458 type Reader = R;
459}
460#[doc = "`write(|w| ..)` method takes [intenset::W](W) writer structure"]
461impl crate::Writable for INTENSET_SPEC {
462 type Writer = W;
463}
464#[doc = "`reset()` method sets INTENSET to value 0"]
465impl crate::Resettable for INTENSET_SPEC {
466 #[inline(always)]
467 fn reset_value() -> Self::Ux {
468 0
469 }
470}