pub type R = crate::R<SMPR1rs>;
pub type W = crate::W<SMPR1rs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum SMP10 {
Cycles1_5 = 0,
Cycles7_5 = 1,
Cycles13_5 = 2,
Cycles28_5 = 3,
Cycles41_5 = 4,
Cycles55_5 = 5,
Cycles71_5 = 6,
Cycles239_5 = 7,
}
impl From<SMP10> for u8 {
#[inline(always)]
fn from(variant: SMP10) -> Self {
variant as _
}
}
impl crate::FieldSpec for SMP10 {
type Ux = u8;
}
impl crate::IsEnum for SMP10 {}
pub type SMP_R = crate::FieldReader<SMP10>;
impl SMP_R {
#[inline(always)]
pub const fn variant(&self) -> SMP10 {
match self.bits {
0 => SMP10::Cycles1_5,
1 => SMP10::Cycles7_5,
2 => SMP10::Cycles13_5,
3 => SMP10::Cycles28_5,
4 => SMP10::Cycles41_5,
5 => SMP10::Cycles55_5,
6 => SMP10::Cycles71_5,
7 => SMP10::Cycles239_5,
_ => unreachable!(),
}
}
#[inline(always)]
pub fn is_cycles1_5(&self) -> bool {
*self == SMP10::Cycles1_5
}
#[inline(always)]
pub fn is_cycles7_5(&self) -> bool {
*self == SMP10::Cycles7_5
}
#[inline(always)]
pub fn is_cycles13_5(&self) -> bool {
*self == SMP10::Cycles13_5
}
#[inline(always)]
pub fn is_cycles28_5(&self) -> bool {
*self == SMP10::Cycles28_5
}
#[inline(always)]
pub fn is_cycles41_5(&self) -> bool {
*self == SMP10::Cycles41_5
}
#[inline(always)]
pub fn is_cycles55_5(&self) -> bool {
*self == SMP10::Cycles55_5
}
#[inline(always)]
pub fn is_cycles71_5(&self) -> bool {
*self == SMP10::Cycles71_5
}
#[inline(always)]
pub fn is_cycles239_5(&self) -> bool {
*self == SMP10::Cycles239_5
}
}
pub type SMP_W<'a, REG> = crate::FieldWriter<'a, REG, 3, SMP10, crate::Safe>;
impl<'a, REG> SMP_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut crate::W<REG> {
self.variant(SMP10::Cycles1_5)
}
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut crate::W<REG> {
self.variant(SMP10::Cycles7_5)
}
#[inline(always)]
pub fn cycles13_5(self) -> &'a mut crate::W<REG> {
self.variant(SMP10::Cycles13_5)
}
#[inline(always)]
pub fn cycles28_5(self) -> &'a mut crate::W<REG> {
self.variant(SMP10::Cycles28_5)
}
#[inline(always)]
pub fn cycles41_5(self) -> &'a mut crate::W<REG> {
self.variant(SMP10::Cycles41_5)
}
#[inline(always)]
pub fn cycles55_5(self) -> &'a mut crate::W<REG> {
self.variant(SMP10::Cycles55_5)
}
#[inline(always)]
pub fn cycles71_5(self) -> &'a mut crate::W<REG> {
self.variant(SMP10::Cycles71_5)
}
#[inline(always)]
pub fn cycles239_5(self) -> &'a mut crate::W<REG> {
self.variant(SMP10::Cycles239_5)
}
}
impl R {
#[inline(always)]
pub fn smp(&self, n: u8) -> SMP_R {
#[allow(clippy::no_effect)]
[(); 8][n as usize];
SMP_R::new(((self.bits >> (n * 3)) & 7) as u8)
}
#[inline(always)]
pub fn smp_iter(&self) -> impl Iterator<Item = SMP_R> + '_ {
(0..8).map(move |n| SMP_R::new(((self.bits >> (n * 3)) & 7) as u8))
}
#[inline(always)]
pub fn smp10(&self) -> SMP_R {
SMP_R::new((self.bits & 7) as u8)
}
#[inline(always)]
pub fn smp11(&self) -> SMP_R {
SMP_R::new(((self.bits >> 3) & 7) as u8)
}
#[inline(always)]
pub fn smp12(&self) -> SMP_R {
SMP_R::new(((self.bits >> 6) & 7) as u8)
}
#[inline(always)]
pub fn smp13(&self) -> SMP_R {
SMP_R::new(((self.bits >> 9) & 7) as u8)
}
#[inline(always)]
pub fn smp14(&self) -> SMP_R {
SMP_R::new(((self.bits >> 12) & 7) as u8)
}
#[inline(always)]
pub fn smp15(&self) -> SMP_R {
SMP_R::new(((self.bits >> 15) & 7) as u8)
}
#[inline(always)]
pub fn smp16(&self) -> SMP_R {
SMP_R::new(((self.bits >> 18) & 7) as u8)
}
#[inline(always)]
pub fn smp17(&self) -> SMP_R {
SMP_R::new(((self.bits >> 21) & 7) as u8)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("SMPR1")
.field("smp10", &self.smp10())
.field("smp11", &self.smp11())
.field("smp12", &self.smp12())
.field("smp13", &self.smp13())
.field("smp14", &self.smp14())
.field("smp15", &self.smp15())
.field("smp16", &self.smp16())
.field("smp17", &self.smp17())
.finish()
}
}
impl W {
#[inline(always)]
pub fn smp(&mut self, n: u8) -> SMP_W<SMPR1rs> {
#[allow(clippy::no_effect)]
[(); 8][n as usize];
SMP_W::new(self, n * 3)
}
#[inline(always)]
pub fn smp10(&mut self) -> SMP_W<SMPR1rs> {
SMP_W::new(self, 0)
}
#[inline(always)]
pub fn smp11(&mut self) -> SMP_W<SMPR1rs> {
SMP_W::new(self, 3)
}
#[inline(always)]
pub fn smp12(&mut self) -> SMP_W<SMPR1rs> {
SMP_W::new(self, 6)
}
#[inline(always)]
pub fn smp13(&mut self) -> SMP_W<SMPR1rs> {
SMP_W::new(self, 9)
}
#[inline(always)]
pub fn smp14(&mut self) -> SMP_W<SMPR1rs> {
SMP_W::new(self, 12)
}
#[inline(always)]
pub fn smp15(&mut self) -> SMP_W<SMPR1rs> {
SMP_W::new(self, 15)
}
#[inline(always)]
pub fn smp16(&mut self) -> SMP_W<SMPR1rs> {
SMP_W::new(self, 18)
}
#[inline(always)]
pub fn smp17(&mut self) -> SMP_W<SMPR1rs> {
SMP_W::new(self, 21)
}
}
pub struct SMPR1rs;
impl crate::RegisterSpec for SMPR1rs {
type Ux = u32;
}
impl crate::Readable for SMPR1rs {}
impl crate::Writable for SMPR1rs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for SMPR1rs {}