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>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum PDDS {
StopMode = 0,
StandbyMode = 1,
}
impl From<PDDS> for bool {
#[inline(always)]
fn from(variant: PDDS) -> Self {
variant as u8 != 0
}
}
pub type PDDS_R = crate::BitReader<PDDS>;
impl PDDS_R {
#[inline(always)]
pub const fn variant(&self) -> PDDS {
match self.bits {
false => PDDS::StopMode,
true => PDDS::StandbyMode,
}
}
#[inline(always)]
pub fn is_stop_mode(&self) -> bool {
*self == PDDS::StopMode
}
#[inline(always)]
pub fn is_standby_mode(&self) -> bool {
*self == PDDS::StandbyMode
}
}
pub type PDDS_W<'a, REG> = crate::BitWriter<'a, REG, PDDS>;
impl<'a, REG> PDDS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn stop_mode(self) -> &'a mut crate::W<REG> {
self.variant(PDDS::StopMode)
}
#[inline(always)]
pub fn standby_mode(self) -> &'a mut crate::W<REG> {
self.variant(PDDS::StandbyMode)
}
}
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;
}
impl crate::Resettable for CRrs {}