nrf52840_pac/ccm/
rateoverride.rs
1#[doc = "Register `RATEOVERRIDE` reader"]
2pub struct R(crate::R<RATEOVERRIDE_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<RATEOVERRIDE_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<RATEOVERRIDE_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<RATEOVERRIDE_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `RATEOVERRIDE` writer"]
17pub struct W(crate::W<RATEOVERRIDE_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<RATEOVERRIDE_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<RATEOVERRIDE_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<RATEOVERRIDE_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `RATEOVERRIDE` reader - Data rate override setting."]
38pub type RATEOVERRIDE_R = crate::FieldReader<u8, RATEOVERRIDE_A>;
39#[doc = "Data rate override setting.\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41#[repr(u8)]
42pub enum RATEOVERRIDE_A {
43 #[doc = "0: 1 Mbps"]
44 _1MBIT = 0,
45 #[doc = "1: 2 Mbps"]
46 _2MBIT = 1,
47 #[doc = "2: 125 Kbps"]
48 _125KBPS = 2,
49 #[doc = "3: 500 Kbps"]
50 _500KBPS = 3,
51}
52impl From<RATEOVERRIDE_A> for u8 {
53 #[inline(always)]
54 fn from(variant: RATEOVERRIDE_A) -> Self {
55 variant as _
56 }
57}
58impl RATEOVERRIDE_R {
59 #[doc = "Get enumerated values variant"]
60 #[inline(always)]
61 pub fn variant(&self) -> RATEOVERRIDE_A {
62 match self.bits {
63 0 => RATEOVERRIDE_A::_1MBIT,
64 1 => RATEOVERRIDE_A::_2MBIT,
65 2 => RATEOVERRIDE_A::_125KBPS,
66 3 => RATEOVERRIDE_A::_500KBPS,
67 _ => unreachable!(),
68 }
69 }
70 #[doc = "Checks if the value of the field is `_1MBIT`"]
71 #[inline(always)]
72 pub fn is_1mbit(&self) -> bool {
73 *self == RATEOVERRIDE_A::_1MBIT
74 }
75 #[doc = "Checks if the value of the field is `_2MBIT`"]
76 #[inline(always)]
77 pub fn is_2mbit(&self) -> bool {
78 *self == RATEOVERRIDE_A::_2MBIT
79 }
80 #[doc = "Checks if the value of the field is `_125KBPS`"]
81 #[inline(always)]
82 pub fn is_125kbps(&self) -> bool {
83 *self == RATEOVERRIDE_A::_125KBPS
84 }
85 #[doc = "Checks if the value of the field is `_500KBPS`"]
86 #[inline(always)]
87 pub fn is_500kbps(&self) -> bool {
88 *self == RATEOVERRIDE_A::_500KBPS
89 }
90}
91#[doc = "Field `RATEOVERRIDE` writer - Data rate override setting."]
92pub type RATEOVERRIDE_W<'a, const O: u8> =
93 crate::FieldWriterSafe<'a, u32, RATEOVERRIDE_SPEC, u8, RATEOVERRIDE_A, 2, O>;
94impl<'a, const O: u8> RATEOVERRIDE_W<'a, O> {
95 #[doc = "1 Mbps"]
96 #[inline(always)]
97 pub fn _1mbit(self) -> &'a mut W {
98 self.variant(RATEOVERRIDE_A::_1MBIT)
99 }
100 #[doc = "2 Mbps"]
101 #[inline(always)]
102 pub fn _2mbit(self) -> &'a mut W {
103 self.variant(RATEOVERRIDE_A::_2MBIT)
104 }
105 #[doc = "125 Kbps"]
106 #[inline(always)]
107 pub fn _125kbps(self) -> &'a mut W {
108 self.variant(RATEOVERRIDE_A::_125KBPS)
109 }
110 #[doc = "500 Kbps"]
111 #[inline(always)]
112 pub fn _500kbps(self) -> &'a mut W {
113 self.variant(RATEOVERRIDE_A::_500KBPS)
114 }
115}
116impl R {
117 #[doc = "Bits 0:1 - Data rate override setting."]
118 #[inline(always)]
119 pub fn rateoverride(&self) -> RATEOVERRIDE_R {
120 RATEOVERRIDE_R::new((self.bits & 3) as u8)
121 }
122}
123impl W {
124 #[doc = "Bits 0:1 - Data rate override setting."]
125 #[inline(always)]
126 pub fn rateoverride(&mut self) -> RATEOVERRIDE_W<0> {
127 RATEOVERRIDE_W::new(self)
128 }
129 #[doc = "Writes raw bits to the register."]
130 #[inline(always)]
131 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
132 self.0.bits(bits);
133 self
134 }
135}
136#[doc = "Data rate override setting.\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 [rateoverride](index.html) module"]
137pub struct RATEOVERRIDE_SPEC;
138impl crate::RegisterSpec for RATEOVERRIDE_SPEC {
139 type Ux = u32;
140}
141#[doc = "`read()` method returns [rateoverride::R](R) reader structure"]
142impl crate::Readable for RATEOVERRIDE_SPEC {
143 type Reader = R;
144}
145#[doc = "`write(|w| ..)` method takes [rateoverride::W](W) writer structure"]
146impl crate::Writable for RATEOVERRIDE_SPEC {
147 type Writer = W;
148}
149#[doc = "`reset()` method sets RATEOVERRIDE to value 0"]
150impl crate::Resettable for RATEOVERRIDE_SPEC {
151 #[inline(always)]
152 fn reset_value() -> Self::Ux {
153 0
154 }
155}