#[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::OFR2 {
#[doc = r"Modifies the contents of the register"]
#[inline(always)]
pub fn modify<F>(&self, f: F)
where
for<'w> F: FnOnce(&R, &'w mut W) -> &'w mut W,
{
let bits = self.register.get();
self.register.set(f(&R { bits }, &mut W { bits }).bits);
}
#[doc = r"Reads the contents of the register"]
#[inline(always)]
pub fn read(&self) -> R {
R {
bits: self.register.get(),
}
}
#[doc = r"Writes to the register"]
#[inline(always)]
pub fn write<F>(&self, f: F)
where
F: FnOnce(&mut W) -> &mut W,
{
self.register.set(
f(&mut W {
bits: Self::reset_value(),
})
.bits,
);
}
#[doc = r"Reset value of the register"]
#[inline(always)]
pub const fn reset_value() -> u32 {
0
}
#[doc = r"Writes the reset value to the register"]
#[inline(always)]
pub fn reset(&self) {
self.register.set(Self::reset_value())
}
}
#[doc = r"Value of the field"]
pub struct OFFSET1_ENR {
bits: bool,
}
impl OFFSET1_ENR {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r"Returns `true` if the bit is clear (0)"]
#[inline(always)]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r"Returns `true` if the bit is set (1)"]
#[inline(always)]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
#[doc = r"Proxy"]
pub struct _OFFSET1_ENW<'a> {
w: &'a mut W,
}
impl<'a> _OFFSET1_ENW<'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 &= !(0x01 << 31);
self.w.bits |= ((value as u32) & 0x01) << 31;
self.w
}
}
#[doc = r"Value of the field"]
pub struct OFFSET1_CHR {
bits: u8,
}
impl OFFSET1_CHR {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _OFFSET1_CHW<'a> {
w: &'a mut W,
}
impl<'a> _OFFSET1_CHW<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits &= !(0x1f << 26);
self.w.bits |= ((value as u32) & 0x1f) << 26;
self.w
}
}
#[doc = r"Value of the field"]
pub struct SATENR {
bits: bool,
}
impl SATENR {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r"Returns `true` if the bit is clear (0)"]
#[inline(always)]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r"Returns `true` if the bit is set (1)"]
#[inline(always)]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
#[doc = r"Proxy"]
pub struct _SATENW<'a> {
w: &'a mut W,
}
impl<'a> _SATENW<'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 &= !(0x01 << 25);
self.w.bits |= ((value as u32) & 0x01) << 25;
self.w
}
}
#[doc = r"Value of the field"]
pub struct OFFSETPOSR {
bits: bool,
}
impl OFFSETPOSR {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r"Returns `true` if the bit is clear (0)"]
#[inline(always)]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r"Returns `true` if the bit is set (1)"]
#[inline(always)]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
#[doc = r"Proxy"]
pub struct _OFFSETPOSW<'a> {
w: &'a mut W,
}
impl<'a> _OFFSETPOSW<'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 &= !(0x01 << 24);
self.w.bits |= ((value as u32) & 0x01) << 24;
self.w
}
}
#[doc = r"Value of the field"]
pub struct OFFSET1R {
bits: u16,
}
impl OFFSET1R {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u16 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _OFFSET1W<'a> {
w: &'a mut W,
}
impl<'a> _OFFSET1W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u16) -> &'a mut W {
self.w.bits &= !(0x0fff << 0);
self.w.bits |= ((value as u32) & 0x0fff) << 0;
self.w
}
}
impl R {
#[doc = r"Value of the register as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u32 {
self.bits
}
#[doc = "Bit 31 - OFFSET1_EN"]
#[inline(always)]
pub fn offset1_en(&self) -> OFFSET1_ENR {
let bits = ((self.bits >> 31) & 0x01) != 0;
OFFSET1_ENR { bits }
}
#[doc = "Bits 26:30 - OFFSET1_CH"]
#[inline(always)]
pub fn offset1_ch(&self) -> OFFSET1_CHR {
let bits = ((self.bits >> 26) & 0x1f) as u8;
OFFSET1_CHR { bits }
}
#[doc = "Bit 25 - SATEN"]
#[inline(always)]
pub fn saten(&self) -> SATENR {
let bits = ((self.bits >> 25) & 0x01) != 0;
SATENR { bits }
}
#[doc = "Bit 24 - OFFSETPOS"]
#[inline(always)]
pub fn offsetpos(&self) -> OFFSETPOSR {
let bits = ((self.bits >> 24) & 0x01) != 0;
OFFSETPOSR { bits }
}
#[doc = "Bits 0:11 - OFFSET1"]
#[inline(always)]
pub fn offset1(&self) -> OFFSET1R {
let bits = ((self.bits >> 0) & 0x0fff) as u16;
OFFSET1R { bits }
}
}
impl W {
#[doc = r"Writes raw bits to the register"]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.bits = bits;
self
}
#[doc = "Bit 31 - OFFSET1_EN"]
#[inline(always)]
pub fn offset1_en(&mut self) -> _OFFSET1_ENW {
_OFFSET1_ENW { w: self }
}
#[doc = "Bits 26:30 - OFFSET1_CH"]
#[inline(always)]
pub fn offset1_ch(&mut self) -> _OFFSET1_CHW {
_OFFSET1_CHW { w: self }
}
#[doc = "Bit 25 - SATEN"]
#[inline(always)]
pub fn saten(&mut self) -> _SATENW {
_SATENW { w: self }
}
#[doc = "Bit 24 - OFFSETPOS"]
#[inline(always)]
pub fn offsetpos(&mut self) -> _OFFSETPOSW {
_OFFSETPOSW { w: self }
}
#[doc = "Bits 0:11 - OFFSET1"]
#[inline(always)]
pub fn offset1(&mut self) -> _OFFSET1W {
_OFFSET1W { w: self }
}
}