#[doc = "Reader of register FREQCORR"]
pub type R = crate::R<u8, super::FREQCORR>;
#[doc = "Writer for register FREQCORR"]
pub type W = crate::W<u8, super::FREQCORR>;
#[doc = "Register FREQCORR `reset()`'s with value 0"]
impl crate::ResetValue for super::FREQCORR {
type Type = u8;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Reader of field `VALUE`"]
pub type VALUE_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `VALUE`"]
pub struct VALUE_W<'a> {
w: &'a mut W,
}
impl<'a> VALUE_W<'a> {
#[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 & !0x7f) | ((value as u8) & 0x7f);
self.w
}
}
#[doc = "Reader of field `SIGN`"]
pub type SIGN_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `SIGN`"]
pub struct SIGN_W<'a> {
w: &'a mut W,
}
impl<'a> SIGN_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 7)) | (((value as u8) & 0x01) << 7);
self.w
}
}
impl R {
#[doc = "Bits 0:6 - Correction Value"]
#[inline(always)]
pub fn value(&self) -> VALUE_R {
VALUE_R::new((self.bits & 0x7f) as u8)
}
#[doc = "Bit 7 - Correction Sign"]
#[inline(always)]
pub fn sign(&self) -> SIGN_R {
SIGN_R::new(((self.bits >> 7) & 0x01) != 0)
}
}
impl W {
#[doc = "Bits 0:6 - Correction Value"]
#[inline(always)]
pub fn value(&mut self) -> VALUE_W {
VALUE_W { w: self }
}
#[doc = "Bit 7 - Correction Sign"]
#[inline(always)]
pub fn sign(&mut self) -> SIGN_W {
SIGN_W { w: self }
}
}