pub type R = crate::R<SMCRrs>;
pub type W = crate::W<SMCRrs>;
pub use crate::stm32l0x3::tim21::smcr::SMS;
pub use crate::stm32l0x3::tim21::smcr::SMS_R;
pub use crate::stm32l0x3::tim21::smcr::SMS_W;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum TS {
Itr0 = 0,
Itr1 = 1,
Itr2 = 2,
Ti1fEd = 4,
Ti1fp1 = 5,
Ti2fp2 = 6,
Etrf = 7,
}
impl From<TS> for u8 {
#[inline(always)]
fn from(variant: TS) -> Self {
variant as _
}
}
impl crate::FieldSpec for TS {
type Ux = u8;
}
impl crate::IsEnum for TS {}
pub type TS_R = crate::FieldReader<TS>;
impl TS_R {
#[inline(always)]
pub const fn variant(&self) -> Option<TS> {
match self.bits {
0 => Some(TS::Itr0),
1 => Some(TS::Itr1),
2 => Some(TS::Itr2),
4 => Some(TS::Ti1fEd),
5 => Some(TS::Ti1fp1),
6 => Some(TS::Ti2fp2),
7 => Some(TS::Etrf),
_ => None,
}
}
#[inline(always)]
pub fn is_itr0(&self) -> bool {
*self == TS::Itr0
}
#[inline(always)]
pub fn is_itr1(&self) -> bool {
*self == TS::Itr1
}
#[inline(always)]
pub fn is_itr2(&self) -> bool {
*self == TS::Itr2
}
#[inline(always)]
pub fn is_ti1f_ed(&self) -> bool {
*self == TS::Ti1fEd
}
#[inline(always)]
pub fn is_ti1fp1(&self) -> bool {
*self == TS::Ti1fp1
}
#[inline(always)]
pub fn is_ti2fp2(&self) -> bool {
*self == TS::Ti2fp2
}
#[inline(always)]
pub fn is_etrf(&self) -> bool {
*self == TS::Etrf
}
}
pub type TS_W<'a, REG> = crate::FieldWriter<'a, REG, 3, TS>;
impl<'a, REG> TS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn itr0(self) -> &'a mut crate::W<REG> {
self.variant(TS::Itr0)
}
#[inline(always)]
pub fn itr1(self) -> &'a mut crate::W<REG> {
self.variant(TS::Itr1)
}
#[inline(always)]
pub fn itr2(self) -> &'a mut crate::W<REG> {
self.variant(TS::Itr2)
}
#[inline(always)]
pub fn ti1f_ed(self) -> &'a mut crate::W<REG> {
self.variant(TS::Ti1fEd)
}
#[inline(always)]
pub fn ti1fp1(self) -> &'a mut crate::W<REG> {
self.variant(TS::Ti1fp1)
}
#[inline(always)]
pub fn ti2fp2(self) -> &'a mut crate::W<REG> {
self.variant(TS::Ti2fp2)
}
#[inline(always)]
pub fn etrf(self) -> &'a mut crate::W<REG> {
self.variant(TS::Etrf)
}
}
pub use crate::stm32l0x3::tim21::smcr::ECE;
pub use crate::stm32l0x3::tim21::smcr::ECE_R;
pub use crate::stm32l0x3::tim21::smcr::ECE_W;
pub use crate::stm32l0x3::tim21::smcr::ETF;
pub use crate::stm32l0x3::tim21::smcr::ETF_R;
pub use crate::stm32l0x3::tim21::smcr::ETF_W;
pub use crate::stm32l0x3::tim21::smcr::ETP;
pub use crate::stm32l0x3::tim21::smcr::ETPS;
pub use crate::stm32l0x3::tim21::smcr::ETPS_R;
pub use crate::stm32l0x3::tim21::smcr::ETPS_W;
pub use crate::stm32l0x3::tim21::smcr::ETP_R;
pub use crate::stm32l0x3::tim21::smcr::ETP_W;
pub use crate::stm32l0x3::tim21::smcr::MSM;
pub use crate::stm32l0x3::tim21::smcr::MSM_R;
pub use crate::stm32l0x3::tim21::smcr::MSM_W;
impl R {
#[inline(always)]
pub fn sms(&self) -> SMS_R {
SMS_R::new((self.bits & 7) as u8)
}
#[inline(always)]
pub fn ts(&self) -> TS_R {
TS_R::new(((self.bits >> 4) & 7) as u8)
}
#[inline(always)]
pub fn msm(&self) -> MSM_R {
MSM_R::new(((self.bits >> 7) & 1) != 0)
}
#[inline(always)]
pub fn etf(&self) -> ETF_R {
ETF_R::new(((self.bits >> 8) & 0x0f) as u8)
}
#[inline(always)]
pub fn etps(&self) -> ETPS_R {
ETPS_R::new(((self.bits >> 12) & 3) as u8)
}
#[inline(always)]
pub fn ece(&self) -> ECE_R {
ECE_R::new(((self.bits >> 14) & 1) != 0)
}
#[inline(always)]
pub fn etp(&self) -> ETP_R {
ETP_R::new(((self.bits >> 15) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("SMCR")
.field("sms", &self.sms())
.field("ts", &self.ts())
.field("msm", &self.msm())
.field("etf", &self.etf())
.field("etps", &self.etps())
.field("ece", &self.ece())
.field("etp", &self.etp())
.finish()
}
}
impl W {
#[inline(always)]
pub fn sms(&mut self) -> SMS_W<SMCRrs> {
SMS_W::new(self, 0)
}
#[inline(always)]
pub fn ts(&mut self) -> TS_W<SMCRrs> {
TS_W::new(self, 4)
}
#[inline(always)]
pub fn msm(&mut self) -> MSM_W<SMCRrs> {
MSM_W::new(self, 7)
}
#[inline(always)]
pub fn etf(&mut self) -> ETF_W<SMCRrs> {
ETF_W::new(self, 8)
}
#[inline(always)]
pub fn etps(&mut self) -> ETPS_W<SMCRrs> {
ETPS_W::new(self, 12)
}
#[inline(always)]
pub fn ece(&mut self) -> ECE_W<SMCRrs> {
ECE_W::new(self, 14)
}
#[inline(always)]
pub fn etp(&mut self) -> ETP_W<SMCRrs> {
ETP_W::new(self, 15)
}
}
pub struct SMCRrs;
impl crate::RegisterSpec for SMCRrs {
type Ux = u32;
}
impl crate::Readable for SMCRrs {}
impl crate::Writable for SMCRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for SMCRrs {}