pub type R = crate::R<CFGRrs>;
pub type W = crate::W<CFGRrs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum SW {
Hsi = 0,
Hse = 1,
Pll = 2,
}
impl From<SW> for u8 {
#[inline(always)]
fn from(variant: SW) -> Self {
variant as _
}
}
impl crate::FieldSpec for SW {
type Ux = u8;
}
impl crate::IsEnum for SW {}
pub type SW_R = crate::FieldReader<SW>;
impl SW_R {
#[inline(always)]
pub const fn variant(&self) -> Option<SW> {
match self.bits {
0 => Some(SW::Hsi),
1 => Some(SW::Hse),
2 => Some(SW::Pll),
_ => None,
}
}
#[inline(always)]
pub fn is_hsi(&self) -> bool {
*self == SW::Hsi
}
#[inline(always)]
pub fn is_hse(&self) -> bool {
*self == SW::Hse
}
#[inline(always)]
pub fn is_pll(&self) -> bool {
*self == SW::Pll
}
}
pub type SW_W<'a, REG> = crate::FieldWriter<'a, REG, 2, SW>;
impl<'a, REG> SW_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn hsi(self) -> &'a mut crate::W<REG> {
self.variant(SW::Hsi)
}
#[inline(always)]
pub fn hse(self) -> &'a mut crate::W<REG> {
self.variant(SW::Hse)
}
#[inline(always)]
pub fn pll(self) -> &'a mut crate::W<REG> {
self.variant(SW::Pll)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum SWSR {
Hsi = 0,
Hse = 1,
Pll = 2,
}
impl From<SWSR> for u8 {
#[inline(always)]
fn from(variant: SWSR) -> Self {
variant as _
}
}
impl crate::FieldSpec for SWSR {
type Ux = u8;
}
impl crate::IsEnum for SWSR {}
pub type SWS_R = crate::FieldReader<SWSR>;
impl SWS_R {
#[inline(always)]
pub const fn variant(&self) -> Option<SWSR> {
match self.bits {
0 => Some(SWSR::Hsi),
1 => Some(SWSR::Hse),
2 => Some(SWSR::Pll),
_ => None,
}
}
#[inline(always)]
pub fn is_hsi(&self) -> bool {
*self == SWSR::Hsi
}
#[inline(always)]
pub fn is_hse(&self) -> bool {
*self == SWSR::Hse
}
#[inline(always)]
pub fn is_pll(&self) -> bool {
*self == SWSR::Pll
}
}
pub type SWS_W<'a, REG> = crate::FieldWriter<'a, REG, 2, SWSR>;
impl<'a, REG> SWS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn hsi(self) -> &'a mut crate::W<REG> {
self.variant(SWSR::Hsi)
}
#[inline(always)]
pub fn hse(self) -> &'a mut crate::W<REG> {
self.variant(SWSR::Hse)
}
#[inline(always)]
pub fn pll(self) -> &'a mut crate::W<REG> {
self.variant(SWSR::Pll)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum HPRE {
Div2 = 8,
Div4 = 9,
Div8 = 10,
Div16 = 11,
Div64 = 12,
Div128 = 13,
Div256 = 14,
Div512 = 15,
Div1 = 0,
}
impl From<HPRE> for u8 {
#[inline(always)]
fn from(variant: HPRE) -> Self {
variant as _
}
}
impl crate::FieldSpec for HPRE {
type Ux = u8;
}
impl crate::IsEnum for HPRE {}
pub type HPRE_R = crate::FieldReader<HPRE>;
impl HPRE_R {
#[inline(always)]
pub const fn variant(&self) -> HPRE {
match self.bits {
8 => HPRE::Div2,
9 => HPRE::Div4,
10 => HPRE::Div8,
11 => HPRE::Div16,
12 => HPRE::Div64,
13 => HPRE::Div128,
14 => HPRE::Div256,
15 => HPRE::Div512,
_ => HPRE::Div1,
}
}
#[inline(always)]
pub fn is_div2(&self) -> bool {
*self == HPRE::Div2
}
#[inline(always)]
pub fn is_div4(&self) -> bool {
*self == HPRE::Div4
}
#[inline(always)]
pub fn is_div8(&self) -> bool {
*self == HPRE::Div8
}
#[inline(always)]
pub fn is_div16(&self) -> bool {
*self == HPRE::Div16
}
#[inline(always)]
pub fn is_div64(&self) -> bool {
*self == HPRE::Div64
}
#[inline(always)]
pub fn is_div128(&self) -> bool {
*self == HPRE::Div128
}
#[inline(always)]
pub fn is_div256(&self) -> bool {
*self == HPRE::Div256
}
#[inline(always)]
pub fn is_div512(&self) -> bool {
*self == HPRE::Div512
}
#[inline(always)]
pub fn is_div1(&self) -> bool {
matches!(self.variant(), HPRE::Div1)
}
}
pub type HPRE_W<'a, REG> = crate::FieldWriter<'a, REG, 4, HPRE, crate::Safe>;
impl<'a, REG> HPRE_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn div2(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div2)
}
#[inline(always)]
pub fn div4(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div4)
}
#[inline(always)]
pub fn div8(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div8)
}
#[inline(always)]
pub fn div16(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div16)
}
#[inline(always)]
pub fn div64(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div64)
}
#[inline(always)]
pub fn div128(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div128)
}
#[inline(always)]
pub fn div256(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div256)
}
#[inline(always)]
pub fn div512(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div512)
}
#[inline(always)]
pub fn div1(self) -> &'a mut crate::W<REG> {
self.variant(HPRE::Div1)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum PPRE1 {
Div2 = 4,
Div4 = 5,
Div8 = 6,
Div16 = 7,
Div1 = 0,
}
impl From<PPRE1> for u8 {
#[inline(always)]
fn from(variant: PPRE1) -> Self {
variant as _
}
}
impl crate::FieldSpec for PPRE1 {
type Ux = u8;
}
impl crate::IsEnum for PPRE1 {}
pub type PPRE1_R = crate::FieldReader<PPRE1>;
impl PPRE1_R {
#[inline(always)]
pub const fn variant(&self) -> PPRE1 {
match self.bits {
4 => PPRE1::Div2,
5 => PPRE1::Div4,
6 => PPRE1::Div8,
7 => PPRE1::Div16,
_ => PPRE1::Div1,
}
}
#[inline(always)]
pub fn is_div2(&self) -> bool {
*self == PPRE1::Div2
}
#[inline(always)]
pub fn is_div4(&self) -> bool {
*self == PPRE1::Div4
}
#[inline(always)]
pub fn is_div8(&self) -> bool {
*self == PPRE1::Div8
}
#[inline(always)]
pub fn is_div16(&self) -> bool {
*self == PPRE1::Div16
}
#[inline(always)]
pub fn is_div1(&self) -> bool {
matches!(self.variant(), PPRE1::Div1)
}
}
pub type PPRE1_W<'a, REG> = crate::FieldWriter<'a, REG, 3, PPRE1, crate::Safe>;
impl<'a, REG> PPRE1_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn div2(self) -> &'a mut crate::W<REG> {
self.variant(PPRE1::Div2)
}
#[inline(always)]
pub fn div4(self) -> &'a mut crate::W<REG> {
self.variant(PPRE1::Div4)
}
#[inline(always)]
pub fn div8(self) -> &'a mut crate::W<REG> {
self.variant(PPRE1::Div8)
}
#[inline(always)]
pub fn div16(self) -> &'a mut crate::W<REG> {
self.variant(PPRE1::Div16)
}
#[inline(always)]
pub fn div1(self) -> &'a mut crate::W<REG> {
self.variant(PPRE1::Div1)
}
}
pub use PPRE1_R as PPRE2_R;
pub use PPRE1_W as PPRE2_W;
pub type RTCPRE_R = crate::FieldReader;
pub type RTCPRE_W<'a, REG> = crate::FieldWriter<'a, REG, 5, u8, crate::Safe>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum MCO1 {
Hsi = 0,
Lse = 1,
Hse = 2,
Pll = 3,
}
impl From<MCO1> for u8 {
#[inline(always)]
fn from(variant: MCO1) -> Self {
variant as _
}
}
impl crate::FieldSpec for MCO1 {
type Ux = u8;
}
impl crate::IsEnum for MCO1 {}
pub type MCO1_R = crate::FieldReader<MCO1>;
impl MCO1_R {
#[inline(always)]
pub const fn variant(&self) -> MCO1 {
match self.bits {
0 => MCO1::Hsi,
1 => MCO1::Lse,
2 => MCO1::Hse,
3 => MCO1::Pll,
_ => unreachable!(),
}
}
#[inline(always)]
pub fn is_hsi(&self) -> bool {
*self == MCO1::Hsi
}
#[inline(always)]
pub fn is_lse(&self) -> bool {
*self == MCO1::Lse
}
#[inline(always)]
pub fn is_hse(&self) -> bool {
*self == MCO1::Hse
}
#[inline(always)]
pub fn is_pll(&self) -> bool {
*self == MCO1::Pll
}
}
pub type MCO1_W<'a, REG> = crate::FieldWriter<'a, REG, 2, MCO1, crate::Safe>;
impl<'a, REG> MCO1_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn hsi(self) -> &'a mut crate::W<REG> {
self.variant(MCO1::Hsi)
}
#[inline(always)]
pub fn lse(self) -> &'a mut crate::W<REG> {
self.variant(MCO1::Lse)
}
#[inline(always)]
pub fn hse(self) -> &'a mut crate::W<REG> {
self.variant(MCO1::Hse)
}
#[inline(always)]
pub fn pll(self) -> &'a mut crate::W<REG> {
self.variant(MCO1::Pll)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum I2SSRC {
Plli2s = 0,
Ckin = 1,
}
impl From<I2SSRC> for bool {
#[inline(always)]
fn from(variant: I2SSRC) -> Self {
variant as u8 != 0
}
}
pub type I2SSRC_R = crate::BitReader<I2SSRC>;
impl I2SSRC_R {
#[inline(always)]
pub const fn variant(&self) -> I2SSRC {
match self.bits {
false => I2SSRC::Plli2s,
true => I2SSRC::Ckin,
}
}
#[inline(always)]
pub fn is_plli2s(&self) -> bool {
*self == I2SSRC::Plli2s
}
#[inline(always)]
pub fn is_ckin(&self) -> bool {
*self == I2SSRC::Ckin
}
}
pub type I2SSRC_W<'a, REG> = crate::BitWriter<'a, REG, I2SSRC>;
impl<'a, REG> I2SSRC_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn plli2s(self) -> &'a mut crate::W<REG> {
self.variant(I2SSRC::Plli2s)
}
#[inline(always)]
pub fn ckin(self) -> &'a mut crate::W<REG> {
self.variant(I2SSRC::Ckin)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum MCO1PRE {
Div2 = 4,
Div3 = 5,
Div4 = 6,
Div5 = 7,
Div1 = 0,
}
impl From<MCO1PRE> for u8 {
#[inline(always)]
fn from(variant: MCO1PRE) -> Self {
variant as _
}
}
impl crate::FieldSpec for MCO1PRE {
type Ux = u8;
}
impl crate::IsEnum for MCO1PRE {}
pub type MCO1PRE_R = crate::FieldReader<MCO1PRE>;
impl MCO1PRE_R {
#[inline(always)]
pub const fn variant(&self) -> MCO1PRE {
match self.bits {
4 => MCO1PRE::Div2,
5 => MCO1PRE::Div3,
6 => MCO1PRE::Div4,
7 => MCO1PRE::Div5,
_ => MCO1PRE::Div1,
}
}
#[inline(always)]
pub fn is_div2(&self) -> bool {
*self == MCO1PRE::Div2
}
#[inline(always)]
pub fn is_div3(&self) -> bool {
*self == MCO1PRE::Div3
}
#[inline(always)]
pub fn is_div4(&self) -> bool {
*self == MCO1PRE::Div4
}
#[inline(always)]
pub fn is_div5(&self) -> bool {
*self == MCO1PRE::Div5
}
#[inline(always)]
pub fn is_div1(&self) -> bool {
matches!(self.variant(), MCO1PRE::Div1)
}
}
pub type MCO1PRE_W<'a, REG> = crate::FieldWriter<'a, REG, 3, MCO1PRE, crate::Safe>;
impl<'a, REG> MCO1PRE_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn div2(self) -> &'a mut crate::W<REG> {
self.variant(MCO1PRE::Div2)
}
#[inline(always)]
pub fn div3(self) -> &'a mut crate::W<REG> {
self.variant(MCO1PRE::Div3)
}
#[inline(always)]
pub fn div4(self) -> &'a mut crate::W<REG> {
self.variant(MCO1PRE::Div4)
}
#[inline(always)]
pub fn div5(self) -> &'a mut crate::W<REG> {
self.variant(MCO1PRE::Div5)
}
#[inline(always)]
pub fn div1(self) -> &'a mut crate::W<REG> {
self.variant(MCO1PRE::Div1)
}
}
pub use MCO1PRE_R as MCO2PRE_R;
pub use MCO1PRE_W as MCO2PRE_W;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum MCO2 {
Sysclk = 0,
Plli2s = 1,
Hse = 2,
Pll = 3,
}
impl From<MCO2> for u8 {
#[inline(always)]
fn from(variant: MCO2) -> Self {
variant as _
}
}
impl crate::FieldSpec for MCO2 {
type Ux = u8;
}
impl crate::IsEnum for MCO2 {}
pub type MCO2_R = crate::FieldReader<MCO2>;
impl MCO2_R {
#[inline(always)]
pub const fn variant(&self) -> MCO2 {
match self.bits {
0 => MCO2::Sysclk,
1 => MCO2::Plli2s,
2 => MCO2::Hse,
3 => MCO2::Pll,
_ => unreachable!(),
}
}
#[inline(always)]
pub fn is_sysclk(&self) -> bool {
*self == MCO2::Sysclk
}
#[inline(always)]
pub fn is_plli2s(&self) -> bool {
*self == MCO2::Plli2s
}
#[inline(always)]
pub fn is_hse(&self) -> bool {
*self == MCO2::Hse
}
#[inline(always)]
pub fn is_pll(&self) -> bool {
*self == MCO2::Pll
}
}
pub type MCO2_W<'a, REG> = crate::FieldWriter<'a, REG, 2, MCO2, crate::Safe>;
impl<'a, REG> MCO2_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[inline(always)]
pub fn sysclk(self) -> &'a mut crate::W<REG> {
self.variant(MCO2::Sysclk)
}
#[inline(always)]
pub fn plli2s(self) -> &'a mut crate::W<REG> {
self.variant(MCO2::Plli2s)
}
#[inline(always)]
pub fn hse(self) -> &'a mut crate::W<REG> {
self.variant(MCO2::Hse)
}
#[inline(always)]
pub fn pll(self) -> &'a mut crate::W<REG> {
self.variant(MCO2::Pll)
}
}
impl R {
#[inline(always)]
pub fn sw(&self) -> SW_R {
SW_R::new((self.bits & 3) as u8)
}
#[inline(always)]
pub fn sws(&self) -> SWS_R {
SWS_R::new(((self.bits >> 2) & 3) as u8)
}
#[inline(always)]
pub fn hpre(&self) -> HPRE_R {
HPRE_R::new(((self.bits >> 4) & 0x0f) as u8)
}
#[inline(always)]
pub fn ppre1(&self) -> PPRE1_R {
PPRE1_R::new(((self.bits >> 10) & 7) as u8)
}
#[inline(always)]
pub fn ppre2(&self) -> PPRE2_R {
PPRE2_R::new(((self.bits >> 13) & 7) as u8)
}
#[inline(always)]
pub fn rtcpre(&self) -> RTCPRE_R {
RTCPRE_R::new(((self.bits >> 16) & 0x1f) as u8)
}
#[inline(always)]
pub fn mco1(&self) -> MCO1_R {
MCO1_R::new(((self.bits >> 21) & 3) as u8)
}
#[inline(always)]
pub fn i2ssrc(&self) -> I2SSRC_R {
I2SSRC_R::new(((self.bits >> 23) & 1) != 0)
}
#[inline(always)]
pub fn mco1pre(&self) -> MCO1PRE_R {
MCO1PRE_R::new(((self.bits >> 24) & 7) as u8)
}
#[inline(always)]
pub fn mco2pre(&self) -> MCO2PRE_R {
MCO2PRE_R::new(((self.bits >> 27) & 7) as u8)
}
#[inline(always)]
pub fn mco2(&self) -> MCO2_R {
MCO2_R::new(((self.bits >> 30) & 3) as u8)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("CFGR")
.field("mco2", &self.mco2())
.field("mco1pre", &self.mco1pre())
.field("mco2pre", &self.mco2pre())
.field("i2ssrc", &self.i2ssrc())
.field("mco1", &self.mco1())
.field("rtcpre", &self.rtcpre())
.field("ppre1", &self.ppre1())
.field("ppre2", &self.ppre2())
.field("hpre", &self.hpre())
.field("sws", &self.sws())
.field("sw", &self.sw())
.finish()
}
}
impl W {
#[inline(always)]
pub fn sw(&mut self) -> SW_W<CFGRrs> {
SW_W::new(self, 0)
}
#[inline(always)]
pub fn sws(&mut self) -> SWS_W<CFGRrs> {
SWS_W::new(self, 2)
}
#[inline(always)]
pub fn hpre(&mut self) -> HPRE_W<CFGRrs> {
HPRE_W::new(self, 4)
}
#[inline(always)]
pub fn ppre1(&mut self) -> PPRE1_W<CFGRrs> {
PPRE1_W::new(self, 10)
}
#[inline(always)]
pub fn ppre2(&mut self) -> PPRE2_W<CFGRrs> {
PPRE2_W::new(self, 13)
}
#[inline(always)]
pub fn rtcpre(&mut self) -> RTCPRE_W<CFGRrs> {
RTCPRE_W::new(self, 16)
}
#[inline(always)]
pub fn mco1(&mut self) -> MCO1_W<CFGRrs> {
MCO1_W::new(self, 21)
}
#[inline(always)]
pub fn i2ssrc(&mut self) -> I2SSRC_W<CFGRrs> {
I2SSRC_W::new(self, 23)
}
#[inline(always)]
pub fn mco1pre(&mut self) -> MCO1PRE_W<CFGRrs> {
MCO1PRE_W::new(self, 24)
}
#[inline(always)]
pub fn mco2pre(&mut self) -> MCO2PRE_W<CFGRrs> {
MCO2PRE_W::new(self, 27)
}
#[inline(always)]
pub fn mco2(&mut self) -> MCO2_W<CFGRrs> {
MCO2_W::new(self, 30)
}
}
pub struct CFGRrs;
impl crate::RegisterSpec for CFGRrs {
type Ux = u32;
}
impl crate::Readable for CFGRrs {}
impl crate::Writable for CFGRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for CFGRrs {}