pub type R = crate::R<CR1rs>;
pub type W = crate::W<CR1rs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum CEN {
Disabled = 0,
Enabled = 1,
}
impl From<CEN> for bool {
#[inline(always)]
fn from(variant: CEN) -> Self {
variant as u8 != 0
}
}
pub type CEN_R = crate::BitReader<CEN>;
impl CEN_R {
#[inline(always)]
pub const fn variant(&self) -> CEN {
match self.bits {
false => CEN::Disabled,
true => CEN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == CEN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == CEN::Enabled
}
}
pub type CEN_W<'a, REG> = crate::BitWriter<'a, REG, CEN>;
impl<'a, REG> CEN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(CEN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(CEN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum UDIS {
Enabled = 0,
Disabled = 1,
}
impl From<UDIS> for bool {
#[inline(always)]
fn from(variant: UDIS) -> Self {
variant as u8 != 0
}
}
pub type UDIS_R = crate::BitReader<UDIS>;
impl UDIS_R {
#[inline(always)]
pub const fn variant(&self) -> UDIS {
match self.bits {
false => UDIS::Enabled,
true => UDIS::Disabled,
}
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == UDIS::Enabled
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == UDIS::Disabled
}
}
pub type UDIS_W<'a, REG> = crate::BitWriter<'a, REG, UDIS>;
impl<'a, REG> UDIS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(UDIS::Enabled)
}
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(UDIS::Disabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum URS {
AnyEvent = 0,
CounterOnly = 1,
}
impl From<URS> for bool {
#[inline(always)]
fn from(variant: URS) -> Self {
variant as u8 != 0
}
}
pub type URS_R = crate::BitReader<URS>;
impl URS_R {
#[inline(always)]
pub const fn variant(&self) -> URS {
match self.bits {
false => URS::AnyEvent,
true => URS::CounterOnly,
}
}
#[inline(always)]
pub fn is_any_event(&self) -> bool {
*self == URS::AnyEvent
}
#[inline(always)]
pub fn is_counter_only(&self) -> bool {
*self == URS::CounterOnly
}
}
pub type URS_W<'a, REG> = crate::BitWriter<'a, REG, URS>;
impl<'a, REG> URS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn any_event(self) -> &'a mut crate::W<REG> {
self.variant(URS::AnyEvent)
}
#[inline(always)]
pub fn counter_only(self) -> &'a mut crate::W<REG> {
self.variant(URS::CounterOnly)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum OPM {
Disabled = 0,
Enabled = 1,
}
impl From<OPM> for bool {
#[inline(always)]
fn from(variant: OPM) -> Self {
variant as u8 != 0
}
}
pub type OPM_R = crate::BitReader<OPM>;
impl OPM_R {
#[inline(always)]
pub const fn variant(&self) -> OPM {
match self.bits {
false => OPM::Disabled,
true => OPM::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == OPM::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == OPM::Enabled
}
}
pub type OPM_W<'a, REG> = crate::BitWriter<'a, REG, OPM>;
impl<'a, REG> OPM_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(OPM::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(OPM::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DIR {
Up = 0,
Down = 1,
}
impl From<DIR> for bool {
#[inline(always)]
fn from(variant: DIR) -> Self {
variant as u8 != 0
}
}
pub type DIR_R = crate::BitReader<DIR>;
impl DIR_R {
#[inline(always)]
pub const fn variant(&self) -> DIR {
match self.bits {
false => DIR::Up,
true => DIR::Down,
}
}
#[inline(always)]
pub fn is_up(&self) -> bool {
*self == DIR::Up
}
#[inline(always)]
pub fn is_down(&self) -> bool {
*self == DIR::Down
}
}
pub type DIR_W<'a, REG> = crate::BitWriter<'a, REG, DIR>;
impl<'a, REG> DIR_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn up(self) -> &'a mut crate::W<REG> {
self.variant(DIR::Up)
}
#[inline(always)]
pub fn down(self) -> &'a mut crate::W<REG> {
self.variant(DIR::Down)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum CMS {
EdgeAligned = 0,
CenterAligned1 = 1,
CenterAligned2 = 2,
CenterAligned3 = 3,
}
impl From<CMS> for u8 {
#[inline(always)]
fn from(variant: CMS) -> Self {
variant as _
}
}
impl crate::FieldSpec for CMS {
type Ux = u8;
}
impl crate::IsEnum for CMS {}
pub type CMS_R = crate::FieldReader<CMS>;
impl CMS_R {
#[inline(always)]
pub const fn variant(&self) -> CMS {
match self.bits {
0 => CMS::EdgeAligned,
1 => CMS::CenterAligned1,
2 => CMS::CenterAligned2,
3 => CMS::CenterAligned3,
_ => unreachable!(),
}
}
#[inline(always)]
pub fn is_edge_aligned(&self) -> bool {
*self == CMS::EdgeAligned
}
#[inline(always)]
pub fn is_center_aligned1(&self) -> bool {
*self == CMS::CenterAligned1
}
#[inline(always)]
pub fn is_center_aligned2(&self) -> bool {
*self == CMS::CenterAligned2
}
#[inline(always)]
pub fn is_center_aligned3(&self) -> bool {
*self == CMS::CenterAligned3
}
}
pub type CMS_W<'a, REG> = crate::FieldWriter<'a, REG, 2, CMS, crate::Safe>;
impl<'a, REG> CMS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn edge_aligned(self) -> &'a mut crate::W<REG> {
self.variant(CMS::EdgeAligned)
}
#[inline(always)]
pub fn center_aligned1(self) -> &'a mut crate::W<REG> {
self.variant(CMS::CenterAligned1)
}
#[inline(always)]
pub fn center_aligned2(self) -> &'a mut crate::W<REG> {
self.variant(CMS::CenterAligned2)
}
#[inline(always)]
pub fn center_aligned3(self) -> &'a mut crate::W<REG> {
self.variant(CMS::CenterAligned3)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ARPE {
Disabled = 0,
Enabled = 1,
}
impl From<ARPE> for bool {
#[inline(always)]
fn from(variant: ARPE) -> Self {
variant as u8 != 0
}
}
pub type ARPE_R = crate::BitReader<ARPE>;
impl ARPE_R {
#[inline(always)]
pub const fn variant(&self) -> ARPE {
match self.bits {
false => ARPE::Disabled,
true => ARPE::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == ARPE::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == ARPE::Enabled
}
}
pub type ARPE_W<'a, REG> = crate::BitWriter<'a, REG, ARPE>;
impl<'a, REG> ARPE_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(ARPE::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(ARPE::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum CKD {
Div1 = 0,
Div2 = 1,
Div4 = 2,
}
impl From<CKD> for u8 {
#[inline(always)]
fn from(variant: CKD) -> Self {
variant as _
}
}
impl crate::FieldSpec for CKD {
type Ux = u8;
}
impl crate::IsEnum for CKD {}
pub type CKD_R = crate::FieldReader<CKD>;
impl CKD_R {
#[inline(always)]
pub const fn variant(&self) -> Option<CKD> {
match self.bits {
0 => Some(CKD::Div1),
1 => Some(CKD::Div2),
2 => Some(CKD::Div4),
_ => None,
}
}
#[inline(always)]
pub fn is_div1(&self) -> bool {
*self == CKD::Div1
}
#[inline(always)]
pub fn is_div2(&self) -> bool {
*self == CKD::Div2
}
#[inline(always)]
pub fn is_div4(&self) -> bool {
*self == CKD::Div4
}
}
pub type CKD_W<'a, REG> = crate::FieldWriter<'a, REG, 2, CKD>;
impl<'a, REG> CKD_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn div1(self) -> &'a mut crate::W<REG> {
self.variant(CKD::Div1)
}
#[inline(always)]
pub fn div2(self) -> &'a mut crate::W<REG> {
self.variant(CKD::Div2)
}
#[inline(always)]
pub fn div4(self) -> &'a mut crate::W<REG> {
self.variant(CKD::Div4)
}
}
pub type UIFREMAP_R = crate::BitReader;
pub type UIFREMAP_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[inline(always)]
pub fn cen(&self) -> CEN_R {
CEN_R::new((self.bits & 1) != 0)
}
#[inline(always)]
pub fn udis(&self) -> UDIS_R {
UDIS_R::new(((self.bits >> 1) & 1) != 0)
}
#[inline(always)]
pub fn urs(&self) -> URS_R {
URS_R::new(((self.bits >> 2) & 1) != 0)
}
#[inline(always)]
pub fn opm(&self) -> OPM_R {
OPM_R::new(((self.bits >> 3) & 1) != 0)
}
#[inline(always)]
pub fn dir(&self) -> DIR_R {
DIR_R::new(((self.bits >> 4) & 1) != 0)
}
#[inline(always)]
pub fn cms(&self) -> CMS_R {
CMS_R::new(((self.bits >> 5) & 3) as u8)
}
#[inline(always)]
pub fn arpe(&self) -> ARPE_R {
ARPE_R::new(((self.bits >> 7) & 1) != 0)
}
#[inline(always)]
pub fn ckd(&self) -> CKD_R {
CKD_R::new(((self.bits >> 8) & 3) as u8)
}
#[inline(always)]
pub fn uifremap(&self) -> UIFREMAP_R {
UIFREMAP_R::new(((self.bits >> 11) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("CR1")
.field("cen", &self.cen())
.field("udis", &self.udis())
.field("urs", &self.urs())
.field("opm", &self.opm())
.field("dir", &self.dir())
.field("cms", &self.cms())
.field("arpe", &self.arpe())
.field("ckd", &self.ckd())
.field("uifremap", &self.uifremap())
.finish()
}
}
impl W {
#[inline(always)]
pub fn cen(&mut self) -> CEN_W<CR1rs> {
CEN_W::new(self, 0)
}
#[inline(always)]
pub fn udis(&mut self) -> UDIS_W<CR1rs> {
UDIS_W::new(self, 1)
}
#[inline(always)]
pub fn urs(&mut self) -> URS_W<CR1rs> {
URS_W::new(self, 2)
}
#[inline(always)]
pub fn opm(&mut self) -> OPM_W<CR1rs> {
OPM_W::new(self, 3)
}
#[inline(always)]
pub fn dir(&mut self) -> DIR_W<CR1rs> {
DIR_W::new(self, 4)
}
#[inline(always)]
pub fn cms(&mut self) -> CMS_W<CR1rs> {
CMS_W::new(self, 5)
}
#[inline(always)]
pub fn arpe(&mut self) -> ARPE_W<CR1rs> {
ARPE_W::new(self, 7)
}
#[inline(always)]
pub fn ckd(&mut self) -> CKD_W<CR1rs> {
CKD_W::new(self, 8)
}
#[inline(always)]
pub fn uifremap(&mut self) -> UIFREMAP_W<CR1rs> {
UIFREMAP_W::new(self, 11)
}
}
pub struct CR1rs;
impl crate::RegisterSpec for CR1rs {
type Ux = u32;
}
impl crate::Readable for CR1rs {}
impl crate::Writable for CR1rs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for CR1rs {}