#[doc = "Register `CALCTRL` reader"]
pub struct R(crate::R<CALCTRL_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<CALCTRL_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<CALCTRL_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<CALCTRL_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `CALCTRL` writer"]
pub struct W(crate::W<CALCTRL_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<CALCTRL_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<CALCTRL_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<CALCTRL_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Calibration Up-counter Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum UPSEL_A {
#[doc = "0: Select HFXO as up-counter"]
HFXO = 0,
#[doc = "1: Select LFXO as up-counter"]
LFXO = 1,
#[doc = "2: Select HFRCO as up-counter"]
HFRCO = 2,
#[doc = "3: Select LFRCO as up-counter"]
LFRCO = 3,
#[doc = "4: Select AUXHFRCO as up-counter"]
AUXHFRCO = 4,
#[doc = "5: Select PRS input selected by PRSUPSEL as up-counter"]
PRS = 5,
#[doc = "7: Select USHFRCO as up-counter"]
USHFRCO = 7,
}
impl From<UPSEL_A> for u8 {
#[inline(always)]
fn from(variant: UPSEL_A) -> Self {
variant as _
}
}
#[doc = "Field `UPSEL` reader - Calibration Up-counter Select"]
pub type UPSEL_R = crate::FieldReader<u8, UPSEL_A>;
impl UPSEL_R {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> Option<UPSEL_A> {
match self.bits {
0 => Some(UPSEL_A::HFXO),
1 => Some(UPSEL_A::LFXO),
2 => Some(UPSEL_A::HFRCO),
3 => Some(UPSEL_A::LFRCO),
4 => Some(UPSEL_A::AUXHFRCO),
5 => Some(UPSEL_A::PRS),
7 => Some(UPSEL_A::USHFRCO),
_ => None,
}
}
#[doc = "Checks if the value of the field is `HFXO`"]
#[inline(always)]
pub fn is_hfxo(&self) -> bool {
*self == UPSEL_A::HFXO
}
#[doc = "Checks if the value of the field is `LFXO`"]
#[inline(always)]
pub fn is_lfxo(&self) -> bool {
*self == UPSEL_A::LFXO
}
#[doc = "Checks if the value of the field is `HFRCO`"]
#[inline(always)]
pub fn is_hfrco(&self) -> bool {
*self == UPSEL_A::HFRCO
}
#[doc = "Checks if the value of the field is `LFRCO`"]
#[inline(always)]
pub fn is_lfrco(&self) -> bool {
*self == UPSEL_A::LFRCO
}
#[doc = "Checks if the value of the field is `AUXHFRCO`"]
#[inline(always)]
pub fn is_auxhfrco(&self) -> bool {
*self == UPSEL_A::AUXHFRCO
}
#[doc = "Checks if the value of the field is `PRS`"]
#[inline(always)]
pub fn is_prs(&self) -> bool {
*self == UPSEL_A::PRS
}
#[doc = "Checks if the value of the field is `USHFRCO`"]
#[inline(always)]
pub fn is_ushfrco(&self) -> bool {
*self == UPSEL_A::USHFRCO
}
}
#[doc = "Field `UPSEL` writer - Calibration Up-counter Select"]
pub type UPSEL_W<'a> = crate::FieldWriter<'a, u32, CALCTRL_SPEC, u8, UPSEL_A, 3, 0>;
impl<'a> UPSEL_W<'a> {
#[doc = "Select HFXO as up-counter"]
#[inline(always)]
pub fn hfxo(self) -> &'a mut W {
self.variant(UPSEL_A::HFXO)
}
#[doc = "Select LFXO as up-counter"]
#[inline(always)]
pub fn lfxo(self) -> &'a mut W {
self.variant(UPSEL_A::LFXO)
}
#[doc = "Select HFRCO as up-counter"]
#[inline(always)]
pub fn hfrco(self) -> &'a mut W {
self.variant(UPSEL_A::HFRCO)
}
#[doc = "Select LFRCO as up-counter"]
#[inline(always)]
pub fn lfrco(self) -> &'a mut W {
self.variant(UPSEL_A::LFRCO)
}
#[doc = "Select AUXHFRCO as up-counter"]
#[inline(always)]
pub fn auxhfrco(self) -> &'a mut W {
self.variant(UPSEL_A::AUXHFRCO)
}
#[doc = "Select PRS input selected by PRSUPSEL as up-counter"]
#[inline(always)]
pub fn prs(self) -> &'a mut W {
self.variant(UPSEL_A::PRS)
}
#[doc = "Select USHFRCO as up-counter"]
#[inline(always)]
pub fn ushfrco(self) -> &'a mut W {
self.variant(UPSEL_A::USHFRCO)
}
}
#[doc = "Calibration Down-counter Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum DOWNSEL_A {
#[doc = "0: Select HFCLK for down-counter"]
HFCLK = 0,
#[doc = "1: Select HFXO for down-counter"]
HFXO = 1,
#[doc = "2: Select LFXO for down-counter"]
LFXO = 2,
#[doc = "3: Select HFRCO for down-counter"]
HFRCO = 3,
#[doc = "4: Select LFRCO for down-counter"]
LFRCO = 4,
#[doc = "5: Select AUXHFRCO for down-counter"]
AUXHFRCO = 5,
#[doc = "6: Select PRS input selected by PRSDOWNSEL as down-counter"]
PRS = 6,
#[doc = "8: Select USHFRCO for down-counter"]
USHFRCO = 8,
}
impl From<DOWNSEL_A> for u8 {
#[inline(always)]
fn from(variant: DOWNSEL_A) -> Self {
variant as _
}
}
#[doc = "Field `DOWNSEL` reader - Calibration Down-counter Select"]
pub type DOWNSEL_R = crate::FieldReader<u8, DOWNSEL_A>;
impl DOWNSEL_R {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> Option<DOWNSEL_A> {
match self.bits {
0 => Some(DOWNSEL_A::HFCLK),
1 => Some(DOWNSEL_A::HFXO),
2 => Some(DOWNSEL_A::LFXO),
3 => Some(DOWNSEL_A::HFRCO),
4 => Some(DOWNSEL_A::LFRCO),
5 => Some(DOWNSEL_A::AUXHFRCO),
6 => Some(DOWNSEL_A::PRS),
8 => Some(DOWNSEL_A::USHFRCO),
_ => None,
}
}
#[doc = "Checks if the value of the field is `HFCLK`"]
#[inline(always)]
pub fn is_hfclk(&self) -> bool {
*self == DOWNSEL_A::HFCLK
}
#[doc = "Checks if the value of the field is `HFXO`"]
#[inline(always)]
pub fn is_hfxo(&self) -> bool {
*self == DOWNSEL_A::HFXO
}
#[doc = "Checks if the value of the field is `LFXO`"]
#[inline(always)]
pub fn is_lfxo(&self) -> bool {
*self == DOWNSEL_A::LFXO
}
#[doc = "Checks if the value of the field is `HFRCO`"]
#[inline(always)]
pub fn is_hfrco(&self) -> bool {
*self == DOWNSEL_A::HFRCO
}
#[doc = "Checks if the value of the field is `LFRCO`"]
#[inline(always)]
pub fn is_lfrco(&self) -> bool {
*self == DOWNSEL_A::LFRCO
}
#[doc = "Checks if the value of the field is `AUXHFRCO`"]
#[inline(always)]
pub fn is_auxhfrco(&self) -> bool {
*self == DOWNSEL_A::AUXHFRCO
}
#[doc = "Checks if the value of the field is `PRS`"]
#[inline(always)]
pub fn is_prs(&self) -> bool {
*self == DOWNSEL_A::PRS
}
#[doc = "Checks if the value of the field is `USHFRCO`"]
#[inline(always)]
pub fn is_ushfrco(&self) -> bool {
*self == DOWNSEL_A::USHFRCO
}
}
#[doc = "Field `DOWNSEL` writer - Calibration Down-counter Select"]
pub type DOWNSEL_W<'a> = crate::FieldWriter<'a, u32, CALCTRL_SPEC, u8, DOWNSEL_A, 4, 4>;
impl<'a> DOWNSEL_W<'a> {
#[doc = "Select HFCLK for down-counter"]
#[inline(always)]
pub fn hfclk(self) -> &'a mut W {
self.variant(DOWNSEL_A::HFCLK)
}
#[doc = "Select HFXO for down-counter"]
#[inline(always)]
pub fn hfxo(self) -> &'a mut W {
self.variant(DOWNSEL_A::HFXO)
}
#[doc = "Select LFXO for down-counter"]
#[inline(always)]
pub fn lfxo(self) -> &'a mut W {
self.variant(DOWNSEL_A::LFXO)
}
#[doc = "Select HFRCO for down-counter"]
#[inline(always)]
pub fn hfrco(self) -> &'a mut W {
self.variant(DOWNSEL_A::HFRCO)
}
#[doc = "Select LFRCO for down-counter"]
#[inline(always)]
pub fn lfrco(self) -> &'a mut W {
self.variant(DOWNSEL_A::LFRCO)
}
#[doc = "Select AUXHFRCO for down-counter"]
#[inline(always)]
pub fn auxhfrco(self) -> &'a mut W {
self.variant(DOWNSEL_A::AUXHFRCO)
}
#[doc = "Select PRS input selected by PRSDOWNSEL as down-counter"]
#[inline(always)]
pub fn prs(self) -> &'a mut W {
self.variant(DOWNSEL_A::PRS)
}
#[doc = "Select USHFRCO for down-counter"]
#[inline(always)]
pub fn ushfrco(self) -> &'a mut W {
self.variant(DOWNSEL_A::USHFRCO)
}
}
#[doc = "Field `CONT` reader - Continuous Calibration"]
pub type CONT_R = crate::BitReader<bool>;
#[doc = "Field `CONT` writer - Continuous Calibration"]
pub type CONT_W<'a> = crate::BitWriter<'a, u32, CALCTRL_SPEC, bool, 8>;
#[doc = "PRS Select for PRS Input When Selected in UPSEL\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum PRSUPSEL_A {
#[doc = "0: PRS Channel 0 selected as input"]
PRSCH0 = 0,
#[doc = "1: PRS Channel 1 selected as input"]
PRSCH1 = 1,
#[doc = "2: PRS Channel 2 selected as input"]
PRSCH2 = 2,
#[doc = "3: PRS Channel 3 selected as input"]
PRSCH3 = 3,
#[doc = "4: PRS Channel 4 selected as input"]
PRSCH4 = 4,
#[doc = "5: PRS Channel 5 selected as input"]
PRSCH5 = 5,
#[doc = "6: PRS Channel 6 selected as input"]
PRSCH6 = 6,
#[doc = "7: PRS Channel 7 selected as input"]
PRSCH7 = 7,
#[doc = "8: PRS Channel 8 selected as input"]
PRSCH8 = 8,
#[doc = "9: PRS Channel 9 selected as input"]
PRSCH9 = 9,
#[doc = "10: PRS Channel 10 selected as input"]
PRSCH10 = 10,
#[doc = "11: PRS Channel 11 selected as input"]
PRSCH11 = 11,
#[doc = "12: PRS Channel 12 selected as input"]
PRSCH12 = 12,
#[doc = "13: PRS Channel 13 selected as input"]
PRSCH13 = 13,
#[doc = "14: PRS Channel 14 selected as input"]
PRSCH14 = 14,
#[doc = "15: PRS Channel 15 selected as input"]
PRSCH15 = 15,
}
impl From<PRSUPSEL_A> for u8 {
#[inline(always)]
fn from(variant: PRSUPSEL_A) -> Self {
variant as _
}
}
#[doc = "Field `PRSUPSEL` reader - PRS Select for PRS Input When Selected in UPSEL"]
pub type PRSUPSEL_R = crate::FieldReader<u8, PRSUPSEL_A>;
impl PRSUPSEL_R {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> PRSUPSEL_A {
match self.bits {
0 => PRSUPSEL_A::PRSCH0,
1 => PRSUPSEL_A::PRSCH1,
2 => PRSUPSEL_A::PRSCH2,
3 => PRSUPSEL_A::PRSCH3,
4 => PRSUPSEL_A::PRSCH4,
5 => PRSUPSEL_A::PRSCH5,
6 => PRSUPSEL_A::PRSCH6,
7 => PRSUPSEL_A::PRSCH7,
8 => PRSUPSEL_A::PRSCH8,
9 => PRSUPSEL_A::PRSCH9,
10 => PRSUPSEL_A::PRSCH10,
11 => PRSUPSEL_A::PRSCH11,
12 => PRSUPSEL_A::PRSCH12,
13 => PRSUPSEL_A::PRSCH13,
14 => PRSUPSEL_A::PRSCH14,
15 => PRSUPSEL_A::PRSCH15,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `PRSCH0`"]
#[inline(always)]
pub fn is_prsch0(&self) -> bool {
*self == PRSUPSEL_A::PRSCH0
}
#[doc = "Checks if the value of the field is `PRSCH1`"]
#[inline(always)]
pub fn is_prsch1(&self) -> bool {
*self == PRSUPSEL_A::PRSCH1
}
#[doc = "Checks if the value of the field is `PRSCH2`"]
#[inline(always)]
pub fn is_prsch2(&self) -> bool {
*self == PRSUPSEL_A::PRSCH2
}
#[doc = "Checks if the value of the field is `PRSCH3`"]
#[inline(always)]
pub fn is_prsch3(&self) -> bool {
*self == PRSUPSEL_A::PRSCH3
}
#[doc = "Checks if the value of the field is `PRSCH4`"]
#[inline(always)]
pub fn is_prsch4(&self) -> bool {
*self == PRSUPSEL_A::PRSCH4
}
#[doc = "Checks if the value of the field is `PRSCH5`"]
#[inline(always)]
pub fn is_prsch5(&self) -> bool {
*self == PRSUPSEL_A::PRSCH5
}
#[doc = "Checks if the value of the field is `PRSCH6`"]
#[inline(always)]
pub fn is_prsch6(&self) -> bool {
*self == PRSUPSEL_A::PRSCH6
}
#[doc = "Checks if the value of the field is `PRSCH7`"]
#[inline(always)]
pub fn is_prsch7(&self) -> bool {
*self == PRSUPSEL_A::PRSCH7
}
#[doc = "Checks if the value of the field is `PRSCH8`"]
#[inline(always)]
pub fn is_prsch8(&self) -> bool {
*self == PRSUPSEL_A::PRSCH8
}
#[doc = "Checks if the value of the field is `PRSCH9`"]
#[inline(always)]
pub fn is_prsch9(&self) -> bool {
*self == PRSUPSEL_A::PRSCH9
}
#[doc = "Checks if the value of the field is `PRSCH10`"]
#[inline(always)]
pub fn is_prsch10(&self) -> bool {
*self == PRSUPSEL_A::PRSCH10
}
#[doc = "Checks if the value of the field is `PRSCH11`"]
#[inline(always)]
pub fn is_prsch11(&self) -> bool {
*self == PRSUPSEL_A::PRSCH11
}
#[doc = "Checks if the value of the field is `PRSCH12`"]
#[inline(always)]
pub fn is_prsch12(&self) -> bool {
*self == PRSUPSEL_A::PRSCH12
}
#[doc = "Checks if the value of the field is `PRSCH13`"]
#[inline(always)]
pub fn is_prsch13(&self) -> bool {
*self == PRSUPSEL_A::PRSCH13
}
#[doc = "Checks if the value of the field is `PRSCH14`"]
#[inline(always)]
pub fn is_prsch14(&self) -> bool {
*self == PRSUPSEL_A::PRSCH14
}
#[doc = "Checks if the value of the field is `PRSCH15`"]
#[inline(always)]
pub fn is_prsch15(&self) -> bool {
*self == PRSUPSEL_A::PRSCH15
}
}
#[doc = "Field `PRSUPSEL` writer - PRS Select for PRS Input When Selected in UPSEL"]
pub type PRSUPSEL_W<'a> = crate::FieldWriterSafe<'a, u32, CALCTRL_SPEC, u8, PRSUPSEL_A, 4, 16>;
impl<'a> PRSUPSEL_W<'a> {
#[doc = "PRS Channel 0 selected as input"]
#[inline(always)]
pub fn prsch0(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH0)
}
#[doc = "PRS Channel 1 selected as input"]
#[inline(always)]
pub fn prsch1(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH1)
}
#[doc = "PRS Channel 2 selected as input"]
#[inline(always)]
pub fn prsch2(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH2)
}
#[doc = "PRS Channel 3 selected as input"]
#[inline(always)]
pub fn prsch3(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH3)
}
#[doc = "PRS Channel 4 selected as input"]
#[inline(always)]
pub fn prsch4(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH4)
}
#[doc = "PRS Channel 5 selected as input"]
#[inline(always)]
pub fn prsch5(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH5)
}
#[doc = "PRS Channel 6 selected as input"]
#[inline(always)]
pub fn prsch6(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH6)
}
#[doc = "PRS Channel 7 selected as input"]
#[inline(always)]
pub fn prsch7(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH7)
}
#[doc = "PRS Channel 8 selected as input"]
#[inline(always)]
pub fn prsch8(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH8)
}
#[doc = "PRS Channel 9 selected as input"]
#[inline(always)]
pub fn prsch9(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH9)
}
#[doc = "PRS Channel 10 selected as input"]
#[inline(always)]
pub fn prsch10(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH10)
}
#[doc = "PRS Channel 11 selected as input"]
#[inline(always)]
pub fn prsch11(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH11)
}
#[doc = "PRS Channel 12 selected as input"]
#[inline(always)]
pub fn prsch12(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH12)
}
#[doc = "PRS Channel 13 selected as input"]
#[inline(always)]
pub fn prsch13(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH13)
}
#[doc = "PRS Channel 14 selected as input"]
#[inline(always)]
pub fn prsch14(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH14)
}
#[doc = "PRS Channel 15 selected as input"]
#[inline(always)]
pub fn prsch15(self) -> &'a mut W {
self.variant(PRSUPSEL_A::PRSCH15)
}
}
#[doc = "PRS Select for PRS Input When Selected in DOWNSEL\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum PRSDOWNSEL_A {
#[doc = "0: PRS Channel 0 selected as input"]
PRSCH0 = 0,
#[doc = "1: PRS Channel 1 selected as input"]
PRSCH1 = 1,
#[doc = "2: PRS Channel 2 selected as input"]
PRSCH2 = 2,
#[doc = "3: PRS Channel 3 selected as input"]
PRSCH3 = 3,
#[doc = "4: PRS Channel 4 selected as input"]
PRSCH4 = 4,
#[doc = "5: PRS Channel 5 selected as input"]
PRSCH5 = 5,
#[doc = "6: PRS Channel 6 selected as input"]
PRSCH6 = 6,
#[doc = "7: PRS Channel 7 selected as input"]
PRSCH7 = 7,
#[doc = "8: PRS Channel 8 selected as input"]
PRSCH8 = 8,
#[doc = "9: PRS Channel 9 selected as input"]
PRSCH9 = 9,
#[doc = "10: PRS Channel 10 selected as input"]
PRSCH10 = 10,
#[doc = "11: PRS Channel 11 selected as input"]
PRSCH11 = 11,
#[doc = "12: PRS Channel 12 selected as input"]
PRSCH12 = 12,
#[doc = "13: PRS Channel 13 selected as input"]
PRSCH13 = 13,
#[doc = "14: PRS Channel 14 selected as input"]
PRSCH14 = 14,
#[doc = "15: PRS Channel 15 selected as input"]
PRSCH15 = 15,
}
impl From<PRSDOWNSEL_A> for u8 {
#[inline(always)]
fn from(variant: PRSDOWNSEL_A) -> Self {
variant as _
}
}
#[doc = "Field `PRSDOWNSEL` reader - PRS Select for PRS Input When Selected in DOWNSEL"]
pub type PRSDOWNSEL_R = crate::FieldReader<u8, PRSDOWNSEL_A>;
impl PRSDOWNSEL_R {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> PRSDOWNSEL_A {
match self.bits {
0 => PRSDOWNSEL_A::PRSCH0,
1 => PRSDOWNSEL_A::PRSCH1,
2 => PRSDOWNSEL_A::PRSCH2,
3 => PRSDOWNSEL_A::PRSCH3,
4 => PRSDOWNSEL_A::PRSCH4,
5 => PRSDOWNSEL_A::PRSCH5,
6 => PRSDOWNSEL_A::PRSCH6,
7 => PRSDOWNSEL_A::PRSCH7,
8 => PRSDOWNSEL_A::PRSCH8,
9 => PRSDOWNSEL_A::PRSCH9,
10 => PRSDOWNSEL_A::PRSCH10,
11 => PRSDOWNSEL_A::PRSCH11,
12 => PRSDOWNSEL_A::PRSCH12,
13 => PRSDOWNSEL_A::PRSCH13,
14 => PRSDOWNSEL_A::PRSCH14,
15 => PRSDOWNSEL_A::PRSCH15,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `PRSCH0`"]
#[inline(always)]
pub fn is_prsch0(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH0
}
#[doc = "Checks if the value of the field is `PRSCH1`"]
#[inline(always)]
pub fn is_prsch1(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH1
}
#[doc = "Checks if the value of the field is `PRSCH2`"]
#[inline(always)]
pub fn is_prsch2(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH2
}
#[doc = "Checks if the value of the field is `PRSCH3`"]
#[inline(always)]
pub fn is_prsch3(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH3
}
#[doc = "Checks if the value of the field is `PRSCH4`"]
#[inline(always)]
pub fn is_prsch4(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH4
}
#[doc = "Checks if the value of the field is `PRSCH5`"]
#[inline(always)]
pub fn is_prsch5(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH5
}
#[doc = "Checks if the value of the field is `PRSCH6`"]
#[inline(always)]
pub fn is_prsch6(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH6
}
#[doc = "Checks if the value of the field is `PRSCH7`"]
#[inline(always)]
pub fn is_prsch7(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH7
}
#[doc = "Checks if the value of the field is `PRSCH8`"]
#[inline(always)]
pub fn is_prsch8(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH8
}
#[doc = "Checks if the value of the field is `PRSCH9`"]
#[inline(always)]
pub fn is_prsch9(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH9
}
#[doc = "Checks if the value of the field is `PRSCH10`"]
#[inline(always)]
pub fn is_prsch10(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH10
}
#[doc = "Checks if the value of the field is `PRSCH11`"]
#[inline(always)]
pub fn is_prsch11(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH11
}
#[doc = "Checks if the value of the field is `PRSCH12`"]
#[inline(always)]
pub fn is_prsch12(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH12
}
#[doc = "Checks if the value of the field is `PRSCH13`"]
#[inline(always)]
pub fn is_prsch13(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH13
}
#[doc = "Checks if the value of the field is `PRSCH14`"]
#[inline(always)]
pub fn is_prsch14(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH14
}
#[doc = "Checks if the value of the field is `PRSCH15`"]
#[inline(always)]
pub fn is_prsch15(&self) -> bool {
*self == PRSDOWNSEL_A::PRSCH15
}
}
#[doc = "Field `PRSDOWNSEL` writer - PRS Select for PRS Input When Selected in DOWNSEL"]
pub type PRSDOWNSEL_W<'a> = crate::FieldWriterSafe<'a, u32, CALCTRL_SPEC, u8, PRSDOWNSEL_A, 4, 24>;
impl<'a> PRSDOWNSEL_W<'a> {
#[doc = "PRS Channel 0 selected as input"]
#[inline(always)]
pub fn prsch0(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH0)
}
#[doc = "PRS Channel 1 selected as input"]
#[inline(always)]
pub fn prsch1(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH1)
}
#[doc = "PRS Channel 2 selected as input"]
#[inline(always)]
pub fn prsch2(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH2)
}
#[doc = "PRS Channel 3 selected as input"]
#[inline(always)]
pub fn prsch3(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH3)
}
#[doc = "PRS Channel 4 selected as input"]
#[inline(always)]
pub fn prsch4(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH4)
}
#[doc = "PRS Channel 5 selected as input"]
#[inline(always)]
pub fn prsch5(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH5)
}
#[doc = "PRS Channel 6 selected as input"]
#[inline(always)]
pub fn prsch6(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH6)
}
#[doc = "PRS Channel 7 selected as input"]
#[inline(always)]
pub fn prsch7(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH7)
}
#[doc = "PRS Channel 8 selected as input"]
#[inline(always)]
pub fn prsch8(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH8)
}
#[doc = "PRS Channel 9 selected as input"]
#[inline(always)]
pub fn prsch9(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH9)
}
#[doc = "PRS Channel 10 selected as input"]
#[inline(always)]
pub fn prsch10(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH10)
}
#[doc = "PRS Channel 11 selected as input"]
#[inline(always)]
pub fn prsch11(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH11)
}
#[doc = "PRS Channel 12 selected as input"]
#[inline(always)]
pub fn prsch12(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH12)
}
#[doc = "PRS Channel 13 selected as input"]
#[inline(always)]
pub fn prsch13(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH13)
}
#[doc = "PRS Channel 14 selected as input"]
#[inline(always)]
pub fn prsch14(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH14)
}
#[doc = "PRS Channel 15 selected as input"]
#[inline(always)]
pub fn prsch15(self) -> &'a mut W {
self.variant(PRSDOWNSEL_A::PRSCH15)
}
}
impl R {
#[doc = "Bits 0:2 - Calibration Up-counter Select"]
#[inline(always)]
pub fn upsel(&self) -> UPSEL_R {
UPSEL_R::new((self.bits & 7) as u8)
}
#[doc = "Bits 4:7 - Calibration Down-counter Select"]
#[inline(always)]
pub fn downsel(&self) -> DOWNSEL_R {
DOWNSEL_R::new(((self.bits >> 4) & 0x0f) as u8)
}
#[doc = "Bit 8 - Continuous Calibration"]
#[inline(always)]
pub fn cont(&self) -> CONT_R {
CONT_R::new(((self.bits >> 8) & 1) != 0)
}
#[doc = "Bits 16:19 - PRS Select for PRS Input When Selected in UPSEL"]
#[inline(always)]
pub fn prsupsel(&self) -> PRSUPSEL_R {
PRSUPSEL_R::new(((self.bits >> 16) & 0x0f) as u8)
}
#[doc = "Bits 24:27 - PRS Select for PRS Input When Selected in DOWNSEL"]
#[inline(always)]
pub fn prsdownsel(&self) -> PRSDOWNSEL_R {
PRSDOWNSEL_R::new(((self.bits >> 24) & 0x0f) as u8)
}
}
impl W {
#[doc = "Bits 0:2 - Calibration Up-counter Select"]
#[inline(always)]
pub fn upsel(&mut self) -> UPSEL_W {
UPSEL_W::new(self)
}
#[doc = "Bits 4:7 - Calibration Down-counter Select"]
#[inline(always)]
pub fn downsel(&mut self) -> DOWNSEL_W {
DOWNSEL_W::new(self)
}
#[doc = "Bit 8 - Continuous Calibration"]
#[inline(always)]
pub fn cont(&mut self) -> CONT_W {
CONT_W::new(self)
}
#[doc = "Bits 16:19 - PRS Select for PRS Input When Selected in UPSEL"]
#[inline(always)]
pub fn prsupsel(&mut self) -> PRSUPSEL_W {
PRSUPSEL_W::new(self)
}
#[doc = "Bits 24:27 - PRS Select for PRS Input When Selected in DOWNSEL"]
#[inline(always)]
pub fn prsdownsel(&mut self) -> PRSDOWNSEL_W {
PRSDOWNSEL_W::new(self)
}
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "Calibration Control Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [calctrl](index.html) module"]
pub struct CALCTRL_SPEC;
impl crate::RegisterSpec for CALCTRL_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [calctrl::R](R) reader structure"]
impl crate::Readable for CALCTRL_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [calctrl::W](W) writer structure"]
impl crate::Writable for CALCTRL_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets CALCTRL to value 0"]
impl crate::Resettable for CALCTRL_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}