1#[doc = "Register `lna` reader"]
2pub struct R(crate::R<LNA_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<LNA_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<LNA_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<LNA_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `lna` writer"]
17pub struct W(crate::W<LNA_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<LNA_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<LNA_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<LNA_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `lna_bm` reader - "]
38pub type LNA_BM_R = crate::FieldReader<u8, u8>;
39#[doc = "Field `lna_bm` writer - "]
40pub type LNA_BM_W<'a, const O: u8> = crate::FieldWriter<'a, u32, LNA_SPEC, u8, u8, 4, O>;
41#[doc = "Field `lna_bm_hw` reader - "]
42pub type LNA_BM_HW_R = crate::FieldReader<u8, u8>;
43#[doc = "Field `lna_bm_hw` writer - "]
44pub type LNA_BM_HW_W<'a, const O: u8> = crate::FieldWriter<'a, u32, LNA_SPEC, u8, u8, 4, O>;
45#[doc = "Field `lna_load_csw` reader - "]
46pub type LNA_LOAD_CSW_R = crate::FieldReader<u8, u8>;
47#[doc = "Field `lna_load_csw` writer - "]
48pub type LNA_LOAD_CSW_W<'a, const O: u8> = crate::FieldWriter<'a, u32, LNA_SPEC, u8, u8, 4, O>;
49#[doc = "Field `lna_load_csw_hw` reader - "]
50pub type LNA_LOAD_CSW_HW_R = crate::FieldReader<u8, u8>;
51#[doc = "Field `lna_load_csw_hw` writer - "]
52pub type LNA_LOAD_CSW_HW_W<'a, const O: u8> = crate::FieldWriter<'a, u32, LNA_SPEC, u8, u8, 4, O>;
53#[doc = "Field `lna_rfb_match` reader - "]
54pub type LNA_RFB_MATCH_R = crate::FieldReader<u8, u8>;
55#[doc = "Field `lna_rfb_match` writer - "]
56pub type LNA_RFB_MATCH_W<'a, const O: u8> = crate::FieldWriter<'a, u32, LNA_SPEC, u8, u8, 3, O>;
57#[doc = "Field `lna_cap_lg` reader - "]
58pub type LNA_CAP_LG_R = crate::FieldReader<u8, u8>;
59#[doc = "Field `lna_cap_lg` writer - "]
60pub type LNA_CAP_LG_W<'a, const O: u8> = crate::FieldWriter<'a, u32, LNA_SPEC, u8, u8, 2, O>;
61#[doc = "Field `lna_lg_gsel` reader - "]
62pub type LNA_LG_GSEL_R = crate::FieldReader<u8, u8>;
63#[doc = "Field `lna_lg_gsel` writer - "]
64pub type LNA_LG_GSEL_W<'a, const O: u8> = crate::FieldWriter<'a, u32, LNA_SPEC, u8, u8, 3, O>;
65impl R {
66 #[doc = "Bits 0:3"]
67 #[inline(always)]
68 pub fn lna_bm(&self) -> LNA_BM_R {
69 LNA_BM_R::new((self.bits & 0x0f) as u8)
70 }
71 #[doc = "Bits 4:7"]
72 #[inline(always)]
73 pub fn lna_bm_hw(&self) -> LNA_BM_HW_R {
74 LNA_BM_HW_R::new(((self.bits >> 4) & 0x0f) as u8)
75 }
76 #[doc = "Bits 8:11"]
77 #[inline(always)]
78 pub fn lna_load_csw(&self) -> LNA_LOAD_CSW_R {
79 LNA_LOAD_CSW_R::new(((self.bits >> 8) & 0x0f) as u8)
80 }
81 #[doc = "Bits 12:15"]
82 #[inline(always)]
83 pub fn lna_load_csw_hw(&self) -> LNA_LOAD_CSW_HW_R {
84 LNA_LOAD_CSW_HW_R::new(((self.bits >> 12) & 0x0f) as u8)
85 }
86 #[doc = "Bits 16:18"]
87 #[inline(always)]
88 pub fn lna_rfb_match(&self) -> LNA_RFB_MATCH_R {
89 LNA_RFB_MATCH_R::new(((self.bits >> 16) & 7) as u8)
90 }
91 #[doc = "Bits 20:21"]
92 #[inline(always)]
93 pub fn lna_cap_lg(&self) -> LNA_CAP_LG_R {
94 LNA_CAP_LG_R::new(((self.bits >> 20) & 3) as u8)
95 }
96 #[doc = "Bits 24:26"]
97 #[inline(always)]
98 pub fn lna_lg_gsel(&self) -> LNA_LG_GSEL_R {
99 LNA_LG_GSEL_R::new(((self.bits >> 24) & 7) as u8)
100 }
101}
102impl W {
103 #[doc = "Bits 0:3"]
104 #[inline(always)]
105 #[must_use]
106 pub fn lna_bm(&mut self) -> LNA_BM_W<0> {
107 LNA_BM_W::new(self)
108 }
109 #[doc = "Bits 4:7"]
110 #[inline(always)]
111 #[must_use]
112 pub fn lna_bm_hw(&mut self) -> LNA_BM_HW_W<4> {
113 LNA_BM_HW_W::new(self)
114 }
115 #[doc = "Bits 8:11"]
116 #[inline(always)]
117 #[must_use]
118 pub fn lna_load_csw(&mut self) -> LNA_LOAD_CSW_W<8> {
119 LNA_LOAD_CSW_W::new(self)
120 }
121 #[doc = "Bits 12:15"]
122 #[inline(always)]
123 #[must_use]
124 pub fn lna_load_csw_hw(&mut self) -> LNA_LOAD_CSW_HW_W<12> {
125 LNA_LOAD_CSW_HW_W::new(self)
126 }
127 #[doc = "Bits 16:18"]
128 #[inline(always)]
129 #[must_use]
130 pub fn lna_rfb_match(&mut self) -> LNA_RFB_MATCH_W<16> {
131 LNA_RFB_MATCH_W::new(self)
132 }
133 #[doc = "Bits 20:21"]
134 #[inline(always)]
135 #[must_use]
136 pub fn lna_cap_lg(&mut self) -> LNA_CAP_LG_W<20> {
137 LNA_CAP_LG_W::new(self)
138 }
139 #[doc = "Bits 24:26"]
140 #[inline(always)]
141 #[must_use]
142 pub fn lna_lg_gsel(&mut self) -> LNA_LG_GSEL_W<24> {
143 LNA_LG_GSEL_W::new(self)
144 }
145 #[doc = "Writes raw bits to the register."]
146 #[inline(always)]
147 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
148 self.0.bits(bits);
149 self
150 }
151}
152#[doc = "lna.\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 [lna](index.html) module"]
153pub struct LNA_SPEC;
154impl crate::RegisterSpec for LNA_SPEC {
155 type Ux = u32;
156}
157#[doc = "`read()` method returns [lna::R](R) reader structure"]
158impl crate::Readable for LNA_SPEC {
159 type Reader = R;
160}
161#[doc = "`write(|w| ..)` method takes [lna::W](W) writer structure"]
162impl crate::Writable for LNA_SPEC {
163 type Writer = W;
164 const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
165 const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
166}
167#[doc = "`reset()` method sets lna to value 0"]
168impl crate::Resettable for LNA_SPEC {
169 const RESET_VALUE: Self::Ux = 0;
170}