pub type R = crate::R<CRrs>;
pub type W = crate::W<CRrs>;
pub type LPDS_R = crate::BitReader;
pub type LPDS_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type PDDS_R = crate::BitReader;
pub type PDDS_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type CWUF_R = crate::BitReader;
pub type CWUF_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type CSBF_R = crate::BitReader;
pub type CSBF_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type PVDE_R = crate::BitReader;
pub type PVDE_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type PLS_R = crate::FieldReader;
pub type PLS_W<'a, REG> = crate::FieldWriter<'a, REG, 3>;
pub type DBP_R = crate::BitReader;
pub type DBP_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[inline(always)]
pub fn lpds(&self) -> LPDS_R {
LPDS_R::new((self.bits & 1) != 0)
}
#[inline(always)]
pub fn pdds(&self) -> PDDS_R {
PDDS_R::new(((self.bits >> 1) & 1) != 0)
}
#[inline(always)]
pub fn cwuf(&self) -> CWUF_R {
CWUF_R::new(((self.bits >> 2) & 1) != 0)
}
#[inline(always)]
pub fn csbf(&self) -> CSBF_R {
CSBF_R::new(((self.bits >> 3) & 1) != 0)
}
#[inline(always)]
pub fn pvde(&self) -> PVDE_R {
PVDE_R::new(((self.bits >> 4) & 1) != 0)
}
#[inline(always)]
pub fn pls(&self) -> PLS_R {
PLS_R::new(((self.bits >> 5) & 7) as u8)
}
#[inline(always)]
pub fn dbp(&self) -> DBP_R {
DBP_R::new(((self.bits >> 8) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("CR")
.field("lpds", &self.lpds())
.field("pdds", &self.pdds())
.field("cwuf", &self.cwuf())
.field("csbf", &self.csbf())
.field("pvde", &self.pvde())
.field("pls", &self.pls())
.field("dbp", &self.dbp())
.finish()
}
}
impl W {
#[inline(always)]
pub fn lpds(&mut self) -> LPDS_W<CRrs> {
LPDS_W::new(self, 0)
}
#[inline(always)]
pub fn pdds(&mut self) -> PDDS_W<CRrs> {
PDDS_W::new(self, 1)
}
#[inline(always)]
pub fn cwuf(&mut self) -> CWUF_W<CRrs> {
CWUF_W::new(self, 2)
}
#[inline(always)]
pub fn csbf(&mut self) -> CSBF_W<CRrs> {
CSBF_W::new(self, 3)
}
#[inline(always)]
pub fn pvde(&mut self) -> PVDE_W<CRrs> {
PVDE_W::new(self, 4)
}
#[inline(always)]
pub fn pls(&mut self) -> PLS_W<CRrs> {
PLS_W::new(self, 5)
}
#[inline(always)]
pub fn dbp(&mut self) -> DBP_W<CRrs> {
DBP_W::new(self, 8)
}
}
pub struct CRrs;
impl crate::RegisterSpec for CRrs {
type Ux = u32;
}
impl crate::Readable for CRrs {}
impl crate::Writable for CRrs {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
impl crate::Resettable for CRrs {
const RESET_VALUE: u32 = 0;
}