1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
#[doc = "Reader of register TXPOWER"] pub type R = crate::R<u32, super::TXPOWER>; #[doc = "Writer for register TXPOWER"] pub type W = crate::W<u32, super::TXPOWER>; #[doc = "Register TXPOWER `reset()`'s with value 0"] impl crate::ResetValue for super::TXPOWER { type Type = u32; #[inline(always)] fn reset_value() -> Self::Type { 0 } } #[doc = "RADIO output power.\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum TXPOWER_A { #[doc = "4: +4 dBm"] POS4DBM, #[doc = "3: +3 dBm"] POS3DBM, #[doc = "0: 0 dBm"] _0DBM, #[doc = "252: -4 dBm"] NEG4DBM, #[doc = "248: -8 dBm"] NEG8DBM, #[doc = "244: -12 dBm"] NEG12DBM, #[doc = "240: -16 dBm"] NEG16DBM, #[doc = "236: -20 dBm"] NEG20DBM, #[doc = "226: Deprecated enumerator - -40 dBm"] NEG30DBM, #[doc = "216: -40 dBm"] NEG40DBM, } impl From<TXPOWER_A> for u8 { #[inline(always)] fn from(variant: TXPOWER_A) -> Self { match variant { TXPOWER_A::POS4DBM => 4, TXPOWER_A::POS3DBM => 3, TXPOWER_A::_0DBM => 0, TXPOWER_A::NEG4DBM => 252, TXPOWER_A::NEG8DBM => 248, TXPOWER_A::NEG12DBM => 244, TXPOWER_A::NEG16DBM => 240, TXPOWER_A::NEG20DBM => 236, TXPOWER_A::NEG30DBM => 226, TXPOWER_A::NEG40DBM => 216, } } } #[doc = "Reader of field `TXPOWER`"] pub type TXPOWER_R = crate::R<u8, TXPOWER_A>; impl TXPOWER_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> crate::Variant<u8, TXPOWER_A> { use crate::Variant::*; match self.bits { 4 => Val(TXPOWER_A::POS4DBM), 3 => Val(TXPOWER_A::POS3DBM), 0 => Val(TXPOWER_A::_0DBM), 252 => Val(TXPOWER_A::NEG4DBM), 248 => Val(TXPOWER_A::NEG8DBM), 244 => Val(TXPOWER_A::NEG12DBM), 240 => Val(TXPOWER_A::NEG16DBM), 236 => Val(TXPOWER_A::NEG20DBM), 226 => Val(TXPOWER_A::NEG30DBM), 216 => Val(TXPOWER_A::NEG40DBM), i => Res(i), } } #[doc = "Checks if the value of the field is `POS4DBM`"] #[inline(always)] pub fn is_pos4d_bm(&self) -> bool { *self == TXPOWER_A::POS4DBM } #[doc = "Checks if the value of the field is `POS3DBM`"] #[inline(always)] pub fn is_pos3d_bm(&self) -> bool { *self == TXPOWER_A::POS3DBM } #[doc = "Checks if the value of the field is `_0DBM`"] #[inline(always)] pub fn is_0d_bm(&self) -> bool { *self == TXPOWER_A::_0DBM } #[doc = "Checks if the value of the field is `NEG4DBM`"] #[inline(always)] pub fn is_neg4d_bm(&self) -> bool { *self == TXPOWER_A::NEG4DBM } #[doc = "Checks if the value of the field is `NEG8DBM`"] #[inline(always)] pub fn is_neg8d_bm(&self) -> bool { *self == TXPOWER_A::NEG8DBM } #[doc = "Checks if the value of the field is `NEG12DBM`"] #[inline(always)] pub fn is_neg12d_bm(&self) -> bool { *self == TXPOWER_A::NEG12DBM } #[doc = "Checks if the value of the field is `NEG16DBM`"] #[inline(always)] pub fn is_neg16d_bm(&self) -> bool { *self == TXPOWER_A::NEG16DBM } #[doc = "Checks if the value of the field is `NEG20DBM`"] #[inline(always)] pub fn is_neg20d_bm(&self) -> bool { *self == TXPOWER_A::NEG20DBM } #[doc = "Checks if the value of the field is `NEG30DBM`"] #[inline(always)] pub fn is_neg30d_bm(&self) -> bool { *self == TXPOWER_A::NEG30DBM } #[doc = "Checks if the value of the field is `NEG40DBM`"] #[inline(always)] pub fn is_neg40d_bm(&self) -> bool { *self == TXPOWER_A::NEG40DBM } } #[doc = "Write proxy for field `TXPOWER`"] pub struct TXPOWER_W<'a> { w: &'a mut W, } impl<'a> TXPOWER_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: TXPOWER_A) -> &'a mut W { unsafe { self.bits(variant.into()) } } #[doc = "+4 dBm"] #[inline(always)] pub fn pos4d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::POS4DBM) } #[doc = "+3 dBm"] #[inline(always)] pub fn pos3d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::POS3DBM) } #[doc = "0 dBm"] #[inline(always)] pub fn _0d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::_0DBM) } #[doc = "-4 dBm"] #[inline(always)] pub fn neg4d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::NEG4DBM) } #[doc = "-8 dBm"] #[inline(always)] pub fn neg8d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::NEG8DBM) } #[doc = "-12 dBm"] #[inline(always)] pub fn neg12d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::NEG12DBM) } #[doc = "-16 dBm"] #[inline(always)] pub fn neg16d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::NEG16DBM) } #[doc = "-20 dBm"] #[inline(always)] pub fn neg20d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::NEG20DBM) } #[doc = "Deprecated enumerator - -40 dBm"] #[inline(always)] pub fn neg30d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::NEG30DBM) } #[doc = "-40 dBm"] #[inline(always)] pub fn neg40d_bm(self) -> &'a mut W { self.variant(TXPOWER_A::NEG40DBM) } #[doc = r"Writes raw bits to the field"] #[inline(always)] pub unsafe fn bits(self, value: u8) -> &'a mut W { self.w.bits = (self.w.bits & !0xff) | ((value as u32) & 0xff); self.w } } impl R { #[doc = "Bits 0:7 - RADIO output power."] #[inline(always)] pub fn txpower(&self) -> TXPOWER_R { TXPOWER_R::new((self.bits & 0xff) as u8) } } impl W { #[doc = "Bits 0:7 - RADIO output power."] #[inline(always)] pub fn txpower(&mut self) -> TXPOWER_W { TXPOWER_W { w: self } } }