#[doc = "Reader of register ESC_CONF0"]
pub type R = crate::R<u32, super::ESC_CONF0>;
#[doc = "Writer for register ESC_CONF0"]
pub type W = crate::W<u32, super::ESC_CONF0>;
#[doc = "Register ESC_CONF0 `reset()`'s with value 0"]
impl crate::ResetValue for super::ESC_CONF0 {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Reader of field `SEPER_ESC_CHAR1`"]
pub type SEPER_ESC_CHAR1_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `SEPER_ESC_CHAR1`"]
pub struct SEPER_ESC_CHAR1_W<'a> {
w: &'a mut W,
}
impl<'a> SEPER_ESC_CHAR1_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 & !(0xff << 16)) | (((value as u32) & 0xff) << 16);
self.w
}
}
#[doc = "Reader of field `SEPER_ESC_CHAR0`"]
pub type SEPER_ESC_CHAR0_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `SEPER_ESC_CHAR0`"]
pub struct SEPER_ESC_CHAR0_W<'a> {
w: &'a mut W,
}
impl<'a> SEPER_ESC_CHAR0_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 & !(0xff << 8)) | (((value as u32) & 0xff) << 8);
self.w
}
}
#[doc = "Reader of field `SEPER_CHAR`"]
pub type SEPER_CHAR_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `SEPER_CHAR`"]
pub struct SEPER_CHAR_W<'a> {
w: &'a mut W,
}
impl<'a> SEPER_CHAR_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 & !0xff) | ((value as u32) & 0xff);
self.w
}
}
impl R {
#[doc = "Bits 16:23"]
#[inline(always)]
pub fn seper_esc_char1(&self) -> SEPER_ESC_CHAR1_R {
SEPER_ESC_CHAR1_R::new(((self.bits >> 16) & 0xff) as u8)
}
#[doc = "Bits 8:15"]
#[inline(always)]
pub fn seper_esc_char0(&self) -> SEPER_ESC_CHAR0_R {
SEPER_ESC_CHAR0_R::new(((self.bits >> 8) & 0xff) as u8)
}
#[doc = "Bits 0:7"]
#[inline(always)]
pub fn seper_char(&self) -> SEPER_CHAR_R {
SEPER_CHAR_R::new((self.bits & 0xff) as u8)
}
}
impl W {
#[doc = "Bits 16:23"]
#[inline(always)]
pub fn seper_esc_char1(&mut self) -> SEPER_ESC_CHAR1_W {
SEPER_ESC_CHAR1_W { w: self }
}
#[doc = "Bits 8:15"]
#[inline(always)]
pub fn seper_esc_char0(&mut self) -> SEPER_ESC_CHAR0_W {
SEPER_ESC_CHAR0_W { w: self }
}
#[doc = "Bits 0:7"]
#[inline(always)]
pub fn seper_char(&mut self) -> SEPER_CHAR_W {
SEPER_CHAR_W { w: self }
}
}