pub type R = crate::R<CRrs>;
pub type W = crate::W<CRrs>;
pub type DBG_SLEEP_R = crate::BitReader;
pub type DBG_SLEEP_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type DBG_STOP_R = crate::BitReader;
pub type DBG_STOP_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type DBG_STANDBY_R = crate::BitReader;
pub type DBG_STANDBY_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type TRACE_IOEN_R = crate::BitReader;
pub type TRACE_IOEN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type TRACE_MODE_R = crate::FieldReader;
pub type TRACE_MODE_W<'a, REG> = crate::FieldWriter<'a, REG, 2>;
impl R {
#[inline(always)]
pub fn dbg_sleep(&self) -> DBG_SLEEP_R {
DBG_SLEEP_R::new((self.bits & 1) != 0)
}
#[inline(always)]
pub fn dbg_stop(&self) -> DBG_STOP_R {
DBG_STOP_R::new(((self.bits >> 1) & 1) != 0)
}
#[inline(always)]
pub fn dbg_standby(&self) -> DBG_STANDBY_R {
DBG_STANDBY_R::new(((self.bits >> 2) & 1) != 0)
}
#[inline(always)]
pub fn trace_ioen(&self) -> TRACE_IOEN_R {
TRACE_IOEN_R::new(((self.bits >> 5) & 1) != 0)
}
#[inline(always)]
pub fn trace_mode(&self) -> TRACE_MODE_R {
TRACE_MODE_R::new(((self.bits >> 6) & 3) as u8)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("CR")
.field("dbg_sleep", &self.dbg_sleep())
.field("dbg_stop", &self.dbg_stop())
.field("dbg_standby", &self.dbg_standby())
.field("trace_ioen", &self.trace_ioen())
.field("trace_mode", &self.trace_mode())
.finish()
}
}
impl W {
#[inline(always)]
pub fn dbg_sleep(&mut self) -> DBG_SLEEP_W<CRrs> {
DBG_SLEEP_W::new(self, 0)
}
#[inline(always)]
pub fn dbg_stop(&mut self) -> DBG_STOP_W<CRrs> {
DBG_STOP_W::new(self, 1)
}
#[inline(always)]
pub fn dbg_standby(&mut self) -> DBG_STANDBY_W<CRrs> {
DBG_STANDBY_W::new(self, 2)
}
#[inline(always)]
pub fn trace_ioen(&mut self) -> TRACE_IOEN_W<CRrs> {
TRACE_IOEN_W::new(self, 5)
}
#[inline(always)]
pub fn trace_mode(&mut self) -> TRACE_MODE_W<CRrs> {
TRACE_MODE_W::new(self, 6)
}
}
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 {}