#[doc = r" Value read from the register"]
pub struct R {
bits: u32,
}
#[doc = r" Value to write to the register"]
pub struct W {
bits: u32,
}
impl super::CONFIG_CC13_FE {
#[doc = r" Modifies the contents of the register"]
#[inline]
pub fn modify<F>(&self, f: F)
where
for<'w> F: FnOnce(&R, &'w mut W) -> &'w mut W,
{
let bits = self.register.get();
let r = R { bits: bits };
let mut w = W { bits: bits };
f(&r, &mut w);
self.register.set(w.bits);
}
#[doc = r" Reads the contents of the register"]
#[inline]
pub fn read(&self) -> R {
R {
bits: self.register.get(),
}
}
#[doc = r" Writes to the register"]
#[inline]
pub fn write<F>(&self, f: F)
where
F: FnOnce(&mut W) -> &mut W,
{
let mut w = W::reset_value();
f(&mut w);
self.register.set(w.bits);
}
#[doc = r" Writes the reset value to the register"]
#[inline]
pub fn reset(&self) {
self.write(|w| w)
}
}
#[doc = r" Value of the field"]
pub struct IFAMP_IBR {
bits: u8,
}
impl IFAMP_IBR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct LNA_IBR {
bits: u8,
}
impl LNA_IBR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct IFAMP_TRIMR {
bits: u8,
}
impl IFAMP_TRIMR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct CTL_PA0_TRIMR {
bits: u8,
}
impl CTL_PA0_TRIMR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct PATRIMCOMPLETE_NR {
bits: bool,
}
impl PATRIMCOMPLETE_NR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r" Returns `true` if the bit is clear (0)"]
#[inline]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r" Returns `true` if the bit is set (1)"]
#[inline]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
#[doc = r" Value of the field"]
pub struct RSSITRIMCOMPLETE_NR {
bits: bool,
}
impl RSSITRIMCOMPLETE_NR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r" Returns `true` if the bit is clear (0)"]
#[inline]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r" Returns `true` if the bit is set (1)"]
#[inline]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
#[doc = r" Value of the field"]
pub struct RSSI_OFFSETR {
bits: u8,
}
impl RSSI_OFFSETR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Proxy"]
pub struct _IFAMP_IBW<'a> {
w: &'a mut W,
}
impl<'a> _IFAMP_IBW<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 15;
const OFFSET: u8 = 28;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _LNA_IBW<'a> {
w: &'a mut W,
}
impl<'a> _LNA_IBW<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 15;
const OFFSET: u8 = 24;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _IFAMP_TRIMW<'a> {
w: &'a mut W,
}
impl<'a> _IFAMP_TRIMW<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 31;
const OFFSET: u8 = 19;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _CTL_PA0_TRIMW<'a> {
w: &'a mut W,
}
impl<'a> _CTL_PA0_TRIMW<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 31;
const OFFSET: u8 = 14;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _PATRIMCOMPLETE_NW<'a> {
w: &'a mut W,
}
impl<'a> _PATRIMCOMPLETE_NW<'a> {
#[doc = r" Sets the field bit"]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r" Clears the field bit"]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r" Writes raw bits to the field"]
#[inline]
pub fn bit(self, value: bool) -> &'a mut W {
const MASK: bool = true;
const OFFSET: u8 = 13;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _RSSITRIMCOMPLETE_NW<'a> {
w: &'a mut W,
}
impl<'a> _RSSITRIMCOMPLETE_NW<'a> {
#[doc = r" Sets the field bit"]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r" Clears the field bit"]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r" Writes raw bits to the field"]
#[inline]
pub fn bit(self, value: bool) -> &'a mut W {
const MASK: bool = true;
const OFFSET: u8 = 12;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _RSSI_OFFSETW<'a> {
w: &'a mut W,
}
impl<'a> _RSSI_OFFSETW<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 255;
const OFFSET: u8 = 0;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
impl R {
#[doc = r" Value of the register as raw bits"]
#[inline]
pub fn bits(&self) -> u32 {
self.bits
}
#[doc = "Bits 28:31 - 31:28\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn ifamp_ib(&self) -> IFAMP_IBR {
let bits = {
const MASK: u8 = 15;
const OFFSET: u8 = 28;
((self.bits >> OFFSET) & MASK as u32) as u8
};
IFAMP_IBR { bits }
}
#[doc = "Bits 24:27 - 27:24\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn lna_ib(&self) -> LNA_IBR {
let bits = {
const MASK: u8 = 15;
const OFFSET: u8 = 24;
((self.bits >> OFFSET) & MASK as u32) as u8
};
LNA_IBR { bits }
}
#[doc = "Bits 19:23 - 23:19\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn ifamp_trim(&self) -> IFAMP_TRIMR {
let bits = {
const MASK: u8 = 31;
const OFFSET: u8 = 19;
((self.bits >> OFFSET) & MASK as u32) as u8
};
IFAMP_TRIMR { bits }
}
#[doc = "Bits 14:18 - 18:14\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn ctl_pa0_trim(&self) -> CTL_PA0_TRIMR {
let bits = {
const MASK: u8 = 31;
const OFFSET: u8 = 14;
((self.bits >> OFFSET) & MASK as u32) as u8
};
CTL_PA0_TRIMR { bits }
}
#[doc = "Bit 13 - 13:13\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn patrimcomplete_n(&self) -> PATRIMCOMPLETE_NR {
let bits = {
const MASK: bool = true;
const OFFSET: u8 = 13;
((self.bits >> OFFSET) & MASK as u32) != 0
};
PATRIMCOMPLETE_NR { bits }
}
#[doc = "Bit 12 - 12:12\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn rssitrimcomplete_n(&self) -> RSSITRIMCOMPLETE_NR {
let bits = {
const MASK: bool = true;
const OFFSET: u8 = 12;
((self.bits >> OFFSET) & MASK as u32) != 0
};
RSSITRIMCOMPLETE_NR { bits }
}
#[doc = "Bits 0:7 - 7:0\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn rssi_offset(&self) -> RSSI_OFFSETR {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 0;
((self.bits >> OFFSET) & MASK as u32) as u8
};
RSSI_OFFSETR { bits }
}
}
impl W {
#[doc = r" Reset value of the register"]
#[inline]
pub fn reset_value() -> W {
W { bits: 1879052032 }
}
#[doc = r" Writes raw bits to the register"]
#[inline]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.bits = bits;
self
}
#[doc = "Bits 28:31 - 31:28\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn ifamp_ib(&mut self) -> _IFAMP_IBW {
_IFAMP_IBW { w: self }
}
#[doc = "Bits 24:27 - 27:24\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn lna_ib(&mut self) -> _LNA_IBW {
_LNA_IBW { w: self }
}
#[doc = "Bits 19:23 - 23:19\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn ifamp_trim(&mut self) -> _IFAMP_TRIMW {
_IFAMP_TRIMW { w: self }
}
#[doc = "Bits 14:18 - 18:14\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn ctl_pa0_trim(&mut self) -> _CTL_PA0_TRIMW {
_CTL_PA0_TRIMW { w: self }
}
#[doc = "Bit 13 - 13:13\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn patrimcomplete_n(&mut self) -> _PATRIMCOMPLETE_NW {
_PATRIMCOMPLETE_NW { w: self }
}
#[doc = "Bit 12 - 12:12\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn rssitrimcomplete_n(&mut self) -> _RSSITRIMCOMPLETE_NW {
_RSSITRIMCOMPLETE_NW { w: self }
}
#[doc = "Bits 0:7 - 7:0\\] Internal. Only to be used through TI provided API."]
#[inline]
pub fn rssi_offset(&mut self) -> _RSSI_OFFSETW {
_RSSI_OFFSETW { w: self }
}
}