pub type R = crate::R<ACRrs>;
pub type W = crate::W<ACRrs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum LATENCY {
Ws0 = 0,
Ws1 = 1,
Ws2 = 2,
Ws3 = 3,
Ws4 = 4,
Ws5 = 5,
Ws6 = 6,
Ws7 = 7,
}
impl From<LATENCY> for u8 {
#[inline(always)]
fn from(variant: LATENCY) -> Self {
variant as _
}
}
impl crate::FieldSpec for LATENCY {
type Ux = u8;
}
impl crate::IsEnum for LATENCY {}
pub type LATENCY_R = crate::FieldReader<LATENCY>;
impl LATENCY_R {
#[inline(always)]
pub const fn variant(&self) -> LATENCY {
match self.bits {
0 => LATENCY::Ws0,
1 => LATENCY::Ws1,
2 => LATENCY::Ws2,
3 => LATENCY::Ws3,
4 => LATENCY::Ws4,
5 => LATENCY::Ws5,
6 => LATENCY::Ws6,
7 => LATENCY::Ws7,
_ => unreachable!(),
}
}
#[inline(always)]
pub fn is_ws0(&self) -> bool {
*self == LATENCY::Ws0
}
#[inline(always)]
pub fn is_ws1(&self) -> bool {
*self == LATENCY::Ws1
}
#[inline(always)]
pub fn is_ws2(&self) -> bool {
*self == LATENCY::Ws2
}
#[inline(always)]
pub fn is_ws3(&self) -> bool {
*self == LATENCY::Ws3
}
#[inline(always)]
pub fn is_ws4(&self) -> bool {
*self == LATENCY::Ws4
}
#[inline(always)]
pub fn is_ws5(&self) -> bool {
*self == LATENCY::Ws5
}
#[inline(always)]
pub fn is_ws6(&self) -> bool {
*self == LATENCY::Ws6
}
#[inline(always)]
pub fn is_ws7(&self) -> bool {
*self == LATENCY::Ws7
}
}
pub type LATENCY_W<'a, REG> = crate::FieldWriter<'a, REG, 3, LATENCY, crate::Safe>;
impl<'a, REG> LATENCY_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn ws0(self) -> &'a mut crate::W<REG> {
self.variant(LATENCY::Ws0)
}
#[inline(always)]
pub fn ws1(self) -> &'a mut crate::W<REG> {
self.variant(LATENCY::Ws1)
}
#[inline(always)]
pub fn ws2(self) -> &'a mut crate::W<REG> {
self.variant(LATENCY::Ws2)
}
#[inline(always)]
pub fn ws3(self) -> &'a mut crate::W<REG> {
self.variant(LATENCY::Ws3)
}
#[inline(always)]
pub fn ws4(self) -> &'a mut crate::W<REG> {
self.variant(LATENCY::Ws4)
}
#[inline(always)]
pub fn ws5(self) -> &'a mut crate::W<REG> {
self.variant(LATENCY::Ws5)
}
#[inline(always)]
pub fn ws6(self) -> &'a mut crate::W<REG> {
self.variant(LATENCY::Ws6)
}
#[inline(always)]
pub fn ws7(self) -> &'a mut crate::W<REG> {
self.variant(LATENCY::Ws7)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum PRFTEN {
Disabled = 0,
Enabled = 1,
}
impl From<PRFTEN> for bool {
#[inline(always)]
fn from(variant: PRFTEN) -> Self {
variant as u8 != 0
}
}
pub type PRFTEN_R = crate::BitReader<PRFTEN>;
impl PRFTEN_R {
#[inline(always)]
pub const fn variant(&self) -> PRFTEN {
match self.bits {
false => PRFTEN::Disabled,
true => PRFTEN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == PRFTEN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == PRFTEN::Enabled
}
}
pub type PRFTEN_W<'a, REG> = crate::BitWriter<'a, REG, PRFTEN>;
impl<'a, REG> PRFTEN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(PRFTEN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(PRFTEN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ICEN {
Disabled = 0,
Enabled = 1,
}
impl From<ICEN> for bool {
#[inline(always)]
fn from(variant: ICEN) -> Self {
variant as u8 != 0
}
}
pub type ICEN_R = crate::BitReader<ICEN>;
impl ICEN_R {
#[inline(always)]
pub const fn variant(&self) -> ICEN {
match self.bits {
false => ICEN::Disabled,
true => ICEN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == ICEN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == ICEN::Enabled
}
}
pub type ICEN_W<'a, REG> = crate::BitWriter<'a, REG, ICEN>;
impl<'a, REG> ICEN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(ICEN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(ICEN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DCEN {
Disabled = 0,
Enabled = 1,
}
impl From<DCEN> for bool {
#[inline(always)]
fn from(variant: DCEN) -> Self {
variant as u8 != 0
}
}
pub type DCEN_R = crate::BitReader<DCEN>;
impl DCEN_R {
#[inline(always)]
pub const fn variant(&self) -> DCEN {
match self.bits {
false => DCEN::Disabled,
true => DCEN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == DCEN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == DCEN::Enabled
}
}
pub type DCEN_W<'a, REG> = crate::BitWriter<'a, REG, DCEN>;
impl<'a, REG> DCEN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(DCEN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(DCEN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ICRST {
NoReset = 0,
Reset = 1,
}
impl From<ICRST> for bool {
#[inline(always)]
fn from(variant: ICRST) -> Self {
variant as u8 != 0
}
}
pub type ICRST_W<'a, REG> = crate::BitWriter<'a, REG, ICRST>;
impl<'a, REG> ICRST_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn no_reset(self) -> &'a mut crate::W<REG> {
self.variant(ICRST::NoReset)
}
#[inline(always)]
pub fn reset(self) -> &'a mut crate::W<REG> {
self.variant(ICRST::Reset)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DCRST {
NoReset = 0,
Reset = 1,
}
impl From<DCRST> for bool {
#[inline(always)]
fn from(variant: DCRST) -> Self {
variant as u8 != 0
}
}
pub type DCRST_R = crate::BitReader<DCRST>;
impl DCRST_R {
#[inline(always)]
pub const fn variant(&self) -> DCRST {
match self.bits {
false => DCRST::NoReset,
true => DCRST::Reset,
}
}
#[inline(always)]
pub fn is_no_reset(&self) -> bool {
*self == DCRST::NoReset
}
#[inline(always)]
pub fn is_reset(&self) -> bool {
*self == DCRST::Reset
}
}
pub type DCRST_W<'a, REG> = crate::BitWriter<'a, REG, DCRST>;
impl<'a, REG> DCRST_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn no_reset(self) -> &'a mut crate::W<REG> {
self.variant(DCRST::NoReset)
}
#[inline(always)]
pub fn reset(self) -> &'a mut crate::W<REG> {
self.variant(DCRST::Reset)
}
}
impl R {
#[inline(always)]
pub fn latency(&self) -> LATENCY_R {
LATENCY_R::new((self.bits & 7) as u8)
}
#[inline(always)]
pub fn prften(&self) -> PRFTEN_R {
PRFTEN_R::new(((self.bits >> 8) & 1) != 0)
}
#[inline(always)]
pub fn icen(&self) -> ICEN_R {
ICEN_R::new(((self.bits >> 9) & 1) != 0)
}
#[inline(always)]
pub fn dcen(&self) -> DCEN_R {
DCEN_R::new(((self.bits >> 10) & 1) != 0)
}
#[inline(always)]
pub fn dcrst(&self) -> DCRST_R {
DCRST_R::new(((self.bits >> 12) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("ACR")
.field("latency", &self.latency())
.field("prften", &self.prften())
.field("icen", &self.icen())
.field("dcen", &self.dcen())
.field("dcrst", &self.dcrst())
.finish()
}
}
impl W {
#[inline(always)]
pub fn latency(&mut self) -> LATENCY_W<ACRrs> {
LATENCY_W::new(self, 0)
}
#[inline(always)]
pub fn prften(&mut self) -> PRFTEN_W<ACRrs> {
PRFTEN_W::new(self, 8)
}
#[inline(always)]
pub fn icen(&mut self) -> ICEN_W<ACRrs> {
ICEN_W::new(self, 9)
}
#[inline(always)]
pub fn dcen(&mut self) -> DCEN_W<ACRrs> {
DCEN_W::new(self, 10)
}
#[inline(always)]
pub fn icrst(&mut self) -> ICRST_W<ACRrs> {
ICRST_W::new(self, 11)
}
#[inline(always)]
pub fn dcrst(&mut self) -> DCRST_W<ACRrs> {
DCRST_W::new(self, 12)
}
}
pub struct ACRrs;
impl crate::RegisterSpec for ACRrs {
type Ux = u32;
}
impl crate::Readable for ACRrs {}
impl crate::Writable for ACRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for ACRrs {}