#[doc = "Reader of register DR"]
pub type R = crate::R<u32, super::DR>;
#[doc = "Writer for register DR"]
pub type W = crate::W<u32, super::DR>;
#[doc = "Register DR `reset()`'s with value 0x2101"]
impl crate::ResetValue for super::DR {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0x2101
}
}
#[doc = "Reader of field `YT`"]
pub type YT_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `YT`"]
pub struct YT_W<'a> {
w: &'a mut W,
}
impl<'a> YT_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 & !(0x0f << 20)) | (((value as u32) & 0x0f) << 20);
self.w
}
}
#[doc = "Reader of field `YU`"]
pub type YU_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `YU`"]
pub struct YU_W<'a> {
w: &'a mut W,
}
impl<'a> YU_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 & !(0x0f << 16)) | (((value as u32) & 0x0f) << 16);
self.w
}
}
#[doc = "Reader of field `WDU`"]
pub type WDU_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `WDU`"]
pub struct WDU_W<'a> {
w: &'a mut W,
}
impl<'a> WDU_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 & !(0x07 << 13)) | (((value as u32) & 0x07) << 13);
self.w
}
}
#[doc = "Reader of field `MT`"]
pub type MT_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `MT`"]
pub struct MT_W<'a> {
w: &'a mut W,
}
impl<'a> MT_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 << 12)) | (((value as u32) & 0x01) << 12);
self.w
}
}
#[doc = "Reader of field `MU`"]
pub type MU_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `MU`"]
pub struct MU_W<'a> {
w: &'a mut W,
}
impl<'a> MU_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 & !(0x0f << 8)) | (((value as u32) & 0x0f) << 8);
self.w
}
}
#[doc = "Reader of field `DT`"]
pub type DT_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `DT`"]
pub struct DT_W<'a> {
w: &'a mut W,
}
impl<'a> DT_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 & !(0x03 << 4)) | (((value as u32) & 0x03) << 4);
self.w
}
}
#[doc = "Reader of field `DU`"]
pub type DU_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `DU`"]
pub struct DU_W<'a> {
w: &'a mut W,
}
impl<'a> DU_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 & !0x0f) | ((value as u32) & 0x0f);
self.w
}
}
impl R {
#[doc = "Bits 20:23 - Year tens in BCD format"]
#[inline(always)]
pub fn yt(&self) -> YT_R {
YT_R::new(((self.bits >> 20) & 0x0f) as u8)
}
#[doc = "Bits 16:19 - Year units in BCD format"]
#[inline(always)]
pub fn yu(&self) -> YU_R {
YU_R::new(((self.bits >> 16) & 0x0f) as u8)
}
#[doc = "Bits 13:15 - Week day units"]
#[inline(always)]
pub fn wdu(&self) -> WDU_R {
WDU_R::new(((self.bits >> 13) & 0x07) as u8)
}
#[doc = "Bit 12 - Month tens in BCD format"]
#[inline(always)]
pub fn mt(&self) -> MT_R {
MT_R::new(((self.bits >> 12) & 0x01) != 0)
}
#[doc = "Bits 8:11 - Month units in BCD format"]
#[inline(always)]
pub fn mu(&self) -> MU_R {
MU_R::new(((self.bits >> 8) & 0x0f) as u8)
}
#[doc = "Bits 4:5 - Date tens in BCD format"]
#[inline(always)]
pub fn dt(&self) -> DT_R {
DT_R::new(((self.bits >> 4) & 0x03) as u8)
}
#[doc = "Bits 0:3 - Date units in BCD format"]
#[inline(always)]
pub fn du(&self) -> DU_R {
DU_R::new((self.bits & 0x0f) as u8)
}
}
impl W {
#[doc = "Bits 20:23 - Year tens in BCD format"]
#[inline(always)]
pub fn yt(&mut self) -> YT_W {
YT_W { w: self }
}
#[doc = "Bits 16:19 - Year units in BCD format"]
#[inline(always)]
pub fn yu(&mut self) -> YU_W {
YU_W { w: self }
}
#[doc = "Bits 13:15 - Week day units"]
#[inline(always)]
pub fn wdu(&mut self) -> WDU_W {
WDU_W { w: self }
}
#[doc = "Bit 12 - Month tens in BCD format"]
#[inline(always)]
pub fn mt(&mut self) -> MT_W {
MT_W { w: self }
}
#[doc = "Bits 8:11 - Month units in BCD format"]
#[inline(always)]
pub fn mu(&mut self) -> MU_W {
MU_W { w: self }
}
#[doc = "Bits 4:5 - Date tens in BCD format"]
#[inline(always)]
pub fn dt(&mut self) -> DT_W {
DT_W { w: self }
}
#[doc = "Bits 0:3 - Date units in BCD format"]
#[inline(always)]
pub fn du(&mut self) -> DU_W {
DU_W { w: self }
}
}