nrf52840_pac/pwm0/seq/
refresh.rs
1#[doc = "Register `REFRESH` reader"]
2pub struct R(crate::R<REFRESH_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<REFRESH_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<REFRESH_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<REFRESH_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `REFRESH` writer"]
17pub struct W(crate::W<REFRESH_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<REFRESH_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<REFRESH_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<REFRESH_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `CNT` reader - Number of additional PWM periods between samples loaded into compare register (load every REFRESH.CNT+1 PWM periods)"]
38pub type CNT_R = crate::FieldReader<u32, CNT_A>;
39#[doc = "Number of additional PWM periods between samples loaded into compare register (load every REFRESH.CNT+1 PWM periods)\n\nValue on reset: 1"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41#[repr(u32)]
42pub enum CNT_A {
43 #[doc = "0: Update every PWM period"]
44 CONTINUOUS = 0,
45}
46impl From<CNT_A> for u32 {
47 #[inline(always)]
48 fn from(variant: CNT_A) -> Self {
49 variant as _
50 }
51}
52impl CNT_R {
53 #[doc = "Get enumerated values variant"]
54 #[inline(always)]
55 pub fn variant(&self) -> Option<CNT_A> {
56 match self.bits {
57 0 => Some(CNT_A::CONTINUOUS),
58 _ => None,
59 }
60 }
61 #[doc = "Checks if the value of the field is `CONTINUOUS`"]
62 #[inline(always)]
63 pub fn is_continuous(&self) -> bool {
64 *self == CNT_A::CONTINUOUS
65 }
66}
67#[doc = "Field `CNT` writer - Number of additional PWM periods between samples loaded into compare register (load every REFRESH.CNT+1 PWM periods)"]
68pub type CNT_W<'a, const O: u8> = crate::FieldWriter<'a, u32, REFRESH_SPEC, u32, CNT_A, 24, O>;
69impl<'a, const O: u8> CNT_W<'a, O> {
70 #[doc = "Update every PWM period"]
71 #[inline(always)]
72 pub fn continuous(self) -> &'a mut W {
73 self.variant(CNT_A::CONTINUOUS)
74 }
75}
76impl R {
77 #[doc = "Bits 0:23 - Number of additional PWM periods between samples loaded into compare register (load every REFRESH.CNT+1 PWM periods)"]
78 #[inline(always)]
79 pub fn cnt(&self) -> CNT_R {
80 CNT_R::new((self.bits & 0x00ff_ffff) as u32)
81 }
82}
83impl W {
84 #[doc = "Bits 0:23 - Number of additional PWM periods between samples loaded into compare register (load every REFRESH.CNT+1 PWM periods)"]
85 #[inline(always)]
86 pub fn cnt(&mut self) -> CNT_W<0> {
87 CNT_W::new(self)
88 }
89 #[doc = "Writes raw bits to the register."]
90 #[inline(always)]
91 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
92 self.0.bits(bits);
93 self
94 }
95}
96#[doc = "Description cluster\\[n\\]: Number of additional PWM periods between samples loaded into compare 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 [refresh](index.html) module"]
97pub struct REFRESH_SPEC;
98impl crate::RegisterSpec for REFRESH_SPEC {
99 type Ux = u32;
100}
101#[doc = "`read()` method returns [refresh::R](R) reader structure"]
102impl crate::Readable for REFRESH_SPEC {
103 type Reader = R;
104}
105#[doc = "`write(|w| ..)` method takes [refresh::W](W) writer structure"]
106impl crate::Writable for REFRESH_SPEC {
107 type Writer = W;
108}
109#[doc = "`reset()` method sets REFRESH to value 0x01"]
110impl crate::Resettable for REFRESH_SPEC {
111 #[inline(always)]
112 fn reset_value() -> Self::Ux {
113 0x01
114 }
115}