efm32wg230_pac/burtc/
status.rs1#[doc = "Register `STATUS` reader"]
2pub struct R(crate::R<STATUS_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<STATUS_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<STATUS_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<STATUS_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Field `LPMODEACT` reader - Low power mode active"]
17pub type LPMODEACT_R = crate::BitReader<bool>;
18#[doc = "Field `BUMODETS` reader - Timestamp for backup mode entry stored."]
19pub type BUMODETS_R = crate::BitReader<bool>;
20#[doc = "Field `RAMWERR` reader - RAM write error."]
21pub type RAMWERR_R = crate::BitReader<bool>;
22impl R {
23 #[doc = "Bit 0 - Low power mode active"]
24 #[inline(always)]
25 pub fn lpmodeact(&self) -> LPMODEACT_R {
26 LPMODEACT_R::new((self.bits & 1) != 0)
27 }
28 #[doc = "Bit 1 - Timestamp for backup mode entry stored."]
29 #[inline(always)]
30 pub fn bumodets(&self) -> BUMODETS_R {
31 BUMODETS_R::new(((self.bits >> 1) & 1) != 0)
32 }
33 #[doc = "Bit 2 - RAM write error."]
34 #[inline(always)]
35 pub fn ramwerr(&self) -> RAMWERR_R {
36 RAMWERR_R::new(((self.bits >> 2) & 1) != 0)
37 }
38}
39#[doc = "Status 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 [status](index.html) module"]
40pub struct STATUS_SPEC;
41impl crate::RegisterSpec for STATUS_SPEC {
42 type Ux = u32;
43}
44#[doc = "`read()` method returns [status::R](R) reader structure"]
45impl crate::Readable for STATUS_SPEC {
46 type Reader = R;
47}
48#[doc = "`reset()` method sets STATUS to value 0"]
49impl crate::Resettable for STATUS_SPEC {
50 #[inline(always)]
51 fn reset_value() -> Self::Ux {
52 0
53 }
54}