efm32wg230_pac/cmu/
if_.rs

1#[doc = "Register `IF` reader"]
2pub struct R(crate::R<IF_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<IF_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<IF_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<IF_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Field `HFRCORDY` reader - HFRCO Ready Interrupt Flag"]
17pub type HFRCORDY_R = crate::BitReader<bool>;
18#[doc = "Field `HFXORDY` reader - HFXO Ready Interrupt Flag"]
19pub type HFXORDY_R = crate::BitReader<bool>;
20#[doc = "Field `LFRCORDY` reader - LFRCO Ready Interrupt Flag"]
21pub type LFRCORDY_R = crate::BitReader<bool>;
22#[doc = "Field `LFXORDY` reader - LFXO Ready Interrupt Flag"]
23pub type LFXORDY_R = crate::BitReader<bool>;
24#[doc = "Field `AUXHFRCORDY` reader - AUXHFRCO Ready Interrupt Flag"]
25pub type AUXHFRCORDY_R = crate::BitReader<bool>;
26#[doc = "Field `CALRDY` reader - Calibration Ready Interrupt Flag"]
27pub type CALRDY_R = crate::BitReader<bool>;
28#[doc = "Field `CALOF` reader - Calibration Overflow Interrupt Flag"]
29pub type CALOF_R = crate::BitReader<bool>;
30impl R {
31    #[doc = "Bit 0 - HFRCO Ready Interrupt Flag"]
32    #[inline(always)]
33    pub fn hfrcordy(&self) -> HFRCORDY_R {
34        HFRCORDY_R::new((self.bits & 1) != 0)
35    }
36    #[doc = "Bit 1 - HFXO Ready Interrupt Flag"]
37    #[inline(always)]
38    pub fn hfxordy(&self) -> HFXORDY_R {
39        HFXORDY_R::new(((self.bits >> 1) & 1) != 0)
40    }
41    #[doc = "Bit 2 - LFRCO Ready Interrupt Flag"]
42    #[inline(always)]
43    pub fn lfrcordy(&self) -> LFRCORDY_R {
44        LFRCORDY_R::new(((self.bits >> 2) & 1) != 0)
45    }
46    #[doc = "Bit 3 - LFXO Ready Interrupt Flag"]
47    #[inline(always)]
48    pub fn lfxordy(&self) -> LFXORDY_R {
49        LFXORDY_R::new(((self.bits >> 3) & 1) != 0)
50    }
51    #[doc = "Bit 4 - AUXHFRCO Ready Interrupt Flag"]
52    #[inline(always)]
53    pub fn auxhfrcordy(&self) -> AUXHFRCORDY_R {
54        AUXHFRCORDY_R::new(((self.bits >> 4) & 1) != 0)
55    }
56    #[doc = "Bit 5 - Calibration Ready Interrupt Flag"]
57    #[inline(always)]
58    pub fn calrdy(&self) -> CALRDY_R {
59        CALRDY_R::new(((self.bits >> 5) & 1) != 0)
60    }
61    #[doc = "Bit 6 - Calibration Overflow Interrupt Flag"]
62    #[inline(always)]
63    pub fn calof(&self) -> CALOF_R {
64        CALOF_R::new(((self.bits >> 6) & 1) != 0)
65    }
66}
67#[doc = "Interrupt Flag Register\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [if_](index.html) module"]
68pub struct IF_SPEC;
69impl crate::RegisterSpec for IF_SPEC {
70    type Ux = u32;
71}
72#[doc = "`read()` method returns [if_::R](R) reader structure"]
73impl crate::Readable for IF_SPEC {
74    type Reader = R;
75}
76#[doc = "`reset()` method sets IF to value 0x01"]
77impl crate::Resettable for IF_SPEC {
78    #[inline(always)]
79    fn reset_value() -> Self::Ux {
80        0x01
81    }
82}