#[doc = "Reader of register SMPR2"]
pub type R = crate::R<u32, super::SMPR2>;
#[doc = "Writer for register SMPR2"]
pub type W = crate::W<u32, super::SMPR2>;
#[doc = "Register SMPR2 `reset()`'s with value 0"]
impl crate::ResetValue for super::SMPR2 {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "SMP18\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SMP18_A {
#[doc = "0: 1.5 ADC clock cycles"]
CYCLES1_5,
#[doc = "1: 2.5 ADC clock cycles"]
CYCLES2_5,
#[doc = "2: 4.5 ADC clock cycles"]
CYCLES4_5,
#[doc = "3: 7.5 ADC clock cycles"]
CYCLES7_5,
#[doc = "4: 19.5 ADC clock cycles"]
CYCLES19_5,
#[doc = "5: 61.5 ADC clock cycles"]
CYCLES61_5,
#[doc = "6: 181.5 ADC clock cycles"]
CYCLES181_5,
#[doc = "7: 601.5 ADC clock cycles"]
CYCLES601_5,
}
impl From<SMP18_A> for u8 {
#[inline(always)]
fn from(variant: SMP18_A) -> Self {
match variant {
SMP18_A::CYCLES1_5 => 0,
SMP18_A::CYCLES2_5 => 1,
SMP18_A::CYCLES4_5 => 2,
SMP18_A::CYCLES7_5 => 3,
SMP18_A::CYCLES19_5 => 4,
SMP18_A::CYCLES61_5 => 5,
SMP18_A::CYCLES181_5 => 6,
SMP18_A::CYCLES601_5 => 7,
}
}
}
#[doc = "Reader of field `SMP18`"]
pub type SMP18_R = crate::R<u8, SMP18_A>;
impl SMP18_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> SMP18_A {
match self.bits {
0 => SMP18_A::CYCLES1_5,
1 => SMP18_A::CYCLES2_5,
2 => SMP18_A::CYCLES4_5,
3 => SMP18_A::CYCLES7_5,
4 => SMP18_A::CYCLES19_5,
5 => SMP18_A::CYCLES61_5,
6 => SMP18_A::CYCLES181_5,
7 => SMP18_A::CYCLES601_5,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `CYCLES1_5`"]
#[inline(always)]
pub fn is_cycles1_5(&self) -> bool {
*self == SMP18_A::CYCLES1_5
}
#[doc = "Checks if the value of the field is `CYCLES2_5`"]
#[inline(always)]
pub fn is_cycles2_5(&self) -> bool {
*self == SMP18_A::CYCLES2_5
}
#[doc = "Checks if the value of the field is `CYCLES4_5`"]
#[inline(always)]
pub fn is_cycles4_5(&self) -> bool {
*self == SMP18_A::CYCLES4_5
}
#[doc = "Checks if the value of the field is `CYCLES7_5`"]
#[inline(always)]
pub fn is_cycles7_5(&self) -> bool {
*self == SMP18_A::CYCLES7_5
}
#[doc = "Checks if the value of the field is `CYCLES19_5`"]
#[inline(always)]
pub fn is_cycles19_5(&self) -> bool {
*self == SMP18_A::CYCLES19_5
}
#[doc = "Checks if the value of the field is `CYCLES61_5`"]
#[inline(always)]
pub fn is_cycles61_5(&self) -> bool {
*self == SMP18_A::CYCLES61_5
}
#[doc = "Checks if the value of the field is `CYCLES181_5`"]
#[inline(always)]
pub fn is_cycles181_5(&self) -> bool {
*self == SMP18_A::CYCLES181_5
}
#[doc = "Checks if the value of the field is `CYCLES601_5`"]
#[inline(always)]
pub fn is_cycles601_5(&self) -> bool {
*self == SMP18_A::CYCLES601_5
}
}
#[doc = "Write proxy for field `SMP18`"]
pub struct SMP18_W<'a> {
w: &'a mut W,
}
impl<'a> SMP18_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP18_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 24)) | (((value as u32) & 0x07) << 24);
self.w
}
}
#[doc = "SMP17"]
pub type SMP17_A = SMP18_A;
#[doc = "Reader of field `SMP17`"]
pub type SMP17_R = crate::R<u8, SMP18_A>;
#[doc = "Write proxy for field `SMP17`"]
pub struct SMP17_W<'a> {
w: &'a mut W,
}
impl<'a> SMP17_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP17_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 21)) | (((value as u32) & 0x07) << 21);
self.w
}
}
#[doc = "SMP16"]
pub type SMP16_A = SMP18_A;
#[doc = "Reader of field `SMP16`"]
pub type SMP16_R = crate::R<u8, SMP18_A>;
#[doc = "Write proxy for field `SMP16`"]
pub struct SMP16_W<'a> {
w: &'a mut W,
}
impl<'a> SMP16_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP16_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 18)) | (((value as u32) & 0x07) << 18);
self.w
}
}
#[doc = "SMP15"]
pub type SMP15_A = SMP18_A;
#[doc = "Reader of field `SMP15`"]
pub type SMP15_R = crate::R<u8, SMP18_A>;
#[doc = "Write proxy for field `SMP15`"]
pub struct SMP15_W<'a> {
w: &'a mut W,
}
impl<'a> SMP15_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP15_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 15)) | (((value as u32) & 0x07) << 15);
self.w
}
}
#[doc = "SMP14"]
pub type SMP14_A = SMP18_A;
#[doc = "Reader of field `SMP14`"]
pub type SMP14_R = crate::R<u8, SMP18_A>;
#[doc = "Write proxy for field `SMP14`"]
pub struct SMP14_W<'a> {
w: &'a mut W,
}
impl<'a> SMP14_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP14_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 12)) | (((value as u32) & 0x07) << 12);
self.w
}
}
#[doc = "SMP13"]
pub type SMP13_A = SMP18_A;
#[doc = "Reader of field `SMP13`"]
pub type SMP13_R = crate::R<u8, SMP18_A>;
#[doc = "Write proxy for field `SMP13`"]
pub struct SMP13_W<'a> {
w: &'a mut W,
}
impl<'a> SMP13_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP13_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 9)) | (((value as u32) & 0x07) << 9);
self.w
}
}
#[doc = "SMP12"]
pub type SMP12_A = SMP18_A;
#[doc = "Reader of field `SMP12`"]
pub type SMP12_R = crate::R<u8, SMP18_A>;
#[doc = "Write proxy for field `SMP12`"]
pub struct SMP12_W<'a> {
w: &'a mut W,
}
impl<'a> SMP12_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP12_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 6)) | (((value as u32) & 0x07) << 6);
self.w
}
}
#[doc = "SMP11"]
pub type SMP11_A = SMP18_A;
#[doc = "Reader of field `SMP11`"]
pub type SMP11_R = crate::R<u8, SMP18_A>;
#[doc = "Write proxy for field `SMP11`"]
pub struct SMP11_W<'a> {
w: &'a mut W,
}
impl<'a> SMP11_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP11_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 3)) | (((value as u32) & 0x07) << 3);
self.w
}
}
#[doc = "SMP10"]
pub type SMP10_A = SMP18_A;
#[doc = "Reader of field `SMP10`"]
pub type SMP10_R = crate::R<u8, SMP18_A>;
#[doc = "Write proxy for field `SMP10`"]
pub struct SMP10_W<'a> {
w: &'a mut W,
}
impl<'a> SMP10_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: SMP10_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "1.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles1_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES1_5)
}
#[doc = "2.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles2_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES2_5)
}
#[doc = "4.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles4_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES4_5)
}
#[doc = "7.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles7_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES7_5)
}
#[doc = "19.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles19_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES19_5)
}
#[doc = "61.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles61_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES61_5)
}
#[doc = "181.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles181_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES181_5)
}
#[doc = "601.5 ADC clock cycles"]
#[inline(always)]
pub fn cycles601_5(self) -> &'a mut W {
self.variant(SMP18_A::CYCLES601_5)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !0x07) | ((value as u32) & 0x07);
self.w
}
}
impl R {
#[doc = "Bits 24:26 - SMP18"]
#[inline(always)]
pub fn smp18(&self) -> SMP18_R {
SMP18_R::new(((self.bits >> 24) & 0x07) as u8)
}
#[doc = "Bits 21:23 - SMP17"]
#[inline(always)]
pub fn smp17(&self) -> SMP17_R {
SMP17_R::new(((self.bits >> 21) & 0x07) as u8)
}
#[doc = "Bits 18:20 - SMP16"]
#[inline(always)]
pub fn smp16(&self) -> SMP16_R {
SMP16_R::new(((self.bits >> 18) & 0x07) as u8)
}
#[doc = "Bits 15:17 - SMP15"]
#[inline(always)]
pub fn smp15(&self) -> SMP15_R {
SMP15_R::new(((self.bits >> 15) & 0x07) as u8)
}
#[doc = "Bits 12:14 - SMP14"]
#[inline(always)]
pub fn smp14(&self) -> SMP14_R {
SMP14_R::new(((self.bits >> 12) & 0x07) as u8)
}
#[doc = "Bits 9:11 - SMP13"]
#[inline(always)]
pub fn smp13(&self) -> SMP13_R {
SMP13_R::new(((self.bits >> 9) & 0x07) as u8)
}
#[doc = "Bits 6:8 - SMP12"]
#[inline(always)]
pub fn smp12(&self) -> SMP12_R {
SMP12_R::new(((self.bits >> 6) & 0x07) as u8)
}
#[doc = "Bits 3:5 - SMP11"]
#[inline(always)]
pub fn smp11(&self) -> SMP11_R {
SMP11_R::new(((self.bits >> 3) & 0x07) as u8)
}
#[doc = "Bits 0:2 - SMP10"]
#[inline(always)]
pub fn smp10(&self) -> SMP10_R {
SMP10_R::new((self.bits & 0x07) as u8)
}
}
impl W {
#[doc = "Bits 24:26 - SMP18"]
#[inline(always)]
pub fn smp18(&mut self) -> SMP18_W {
SMP18_W { w: self }
}
#[doc = "Bits 21:23 - SMP17"]
#[inline(always)]
pub fn smp17(&mut self) -> SMP17_W {
SMP17_W { w: self }
}
#[doc = "Bits 18:20 - SMP16"]
#[inline(always)]
pub fn smp16(&mut self) -> SMP16_W {
SMP16_W { w: self }
}
#[doc = "Bits 15:17 - SMP15"]
#[inline(always)]
pub fn smp15(&mut self) -> SMP15_W {
SMP15_W { w: self }
}
#[doc = "Bits 12:14 - SMP14"]
#[inline(always)]
pub fn smp14(&mut self) -> SMP14_W {
SMP14_W { w: self }
}
#[doc = "Bits 9:11 - SMP13"]
#[inline(always)]
pub fn smp13(&mut self) -> SMP13_W {
SMP13_W { w: self }
}
#[doc = "Bits 6:8 - SMP12"]
#[inline(always)]
pub fn smp12(&mut self) -> SMP12_W {
SMP12_W { w: self }
}
#[doc = "Bits 3:5 - SMP11"]
#[inline(always)]
pub fn smp11(&mut self) -> SMP11_W {
SMP11_W { w: self }
}
#[doc = "Bits 0:2 - SMP10"]
#[inline(always)]
pub fn smp10(&mut self) -> SMP10_W {
SMP10_W { w: self }
}
}