1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#[doc = "Reader of register EM23PERNORETAINSTATUS"]
pub type R = crate::R<u32, super::EM23PERNORETAINSTATUS>;
#[doc = "Reader of field `ACMP0LOCKED`"]
pub type ACMP0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `ACMP1LOCKED`"]
pub type ACMP1LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `PCNT0LOCKED`"]
pub type PCNT0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `PCNT1LOCKED`"]
pub type PCNT1LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `PCNT2LOCKED`"]
pub type PCNT2LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `I2C0LOCKED`"]
pub type I2C0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `I2C1LOCKED`"]
pub type I2C1LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `DAC0LOCKED`"]
pub type DAC0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `IDAC0LOCKED`"]
pub type IDAC0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `ADC0LOCKED`"]
pub type ADC0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `LETIMER0LOCKED`"]
pub type LETIMER0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `WDOG0LOCKED`"]
pub type WDOG0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `WDOG1LOCKED`"]
pub type WDOG1LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `LESENSE0LOCKED`"]
pub type LESENSE0LOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `CSENLOCKED`"]
pub type CSENLOCKED_R = crate::R<bool, bool>;
#[doc = "Reader of field `LEUART0LOCKED`"]
pub type LEUART0LOCKED_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bit 0 - Indicates If ACMP0 Powered Down During EM23"]
    #[inline(always)]
    pub fn acmp0locked(&self) -> ACMP0LOCKED_R {
        ACMP0LOCKED_R::new((self.bits & 0x01) != 0)
    }
    #[doc = "Bit 1 - Indicates If ACMP1 Powered Down During EM23"]
    #[inline(always)]
    pub fn acmp1locked(&self) -> ACMP1LOCKED_R {
        ACMP1LOCKED_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bit 2 - Indicates If PCNT0 Powered Down During EM23"]
    #[inline(always)]
    pub fn pcnt0locked(&self) -> PCNT0LOCKED_R {
        PCNT0LOCKED_R::new(((self.bits >> 2) & 0x01) != 0)
    }
    #[doc = "Bit 3 - Indicates If PCNT1 Powered Down During EM23"]
    #[inline(always)]
    pub fn pcnt1locked(&self) -> PCNT1LOCKED_R {
        PCNT1LOCKED_R::new(((self.bits >> 3) & 0x01) != 0)
    }
    #[doc = "Bit 4 - Indicates If PCNT2 Powered Down During EM23"]
    #[inline(always)]
    pub fn pcnt2locked(&self) -> PCNT2LOCKED_R {
        PCNT2LOCKED_R::new(((self.bits >> 4) & 0x01) != 0)
    }
    #[doc = "Bit 5 - Indicates If I2C0 Powered Down During EM23"]
    #[inline(always)]
    pub fn i2c0locked(&self) -> I2C0LOCKED_R {
        I2C0LOCKED_R::new(((self.bits >> 5) & 0x01) != 0)
    }
    #[doc = "Bit 6 - Indicates If I2C1 Powered Down During EM23"]
    #[inline(always)]
    pub fn i2c1locked(&self) -> I2C1LOCKED_R {
        I2C1LOCKED_R::new(((self.bits >> 6) & 0x01) != 0)
    }
    #[doc = "Bit 7 - Indicates If DAC0 Powered Down During EM23"]
    #[inline(always)]
    pub fn dac0locked(&self) -> DAC0LOCKED_R {
        DAC0LOCKED_R::new(((self.bits >> 7) & 0x01) != 0)
    }
    #[doc = "Bit 8 - Indicates If IDAC0 Powered Down During EM23"]
    #[inline(always)]
    pub fn idac0locked(&self) -> IDAC0LOCKED_R {
        IDAC0LOCKED_R::new(((self.bits >> 8) & 0x01) != 0)
    }
    #[doc = "Bit 9 - Indicates If ADC0 Powered Down During EM23"]
    #[inline(always)]
    pub fn adc0locked(&self) -> ADC0LOCKED_R {
        ADC0LOCKED_R::new(((self.bits >> 9) & 0x01) != 0)
    }
    #[doc = "Bit 10 - Indicates If LETIMER0 Powered Down During EM23"]
    #[inline(always)]
    pub fn letimer0locked(&self) -> LETIMER0LOCKED_R {
        LETIMER0LOCKED_R::new(((self.bits >> 10) & 0x01) != 0)
    }
    #[doc = "Bit 11 - Indicates If WDOG0 Powered Down During EM23"]
    #[inline(always)]
    pub fn wdog0locked(&self) -> WDOG0LOCKED_R {
        WDOG0LOCKED_R::new(((self.bits >> 11) & 0x01) != 0)
    }
    #[doc = "Bit 12 - Indicates If WDOG1 Powered Down During EM23"]
    #[inline(always)]
    pub fn wdog1locked(&self) -> WDOG1LOCKED_R {
        WDOG1LOCKED_R::new(((self.bits >> 12) & 0x01) != 0)
    }
    #[doc = "Bit 13 - Indicates If LESENSE0 Powered Down During EM23"]
    #[inline(always)]
    pub fn lesense0locked(&self) -> LESENSE0LOCKED_R {
        LESENSE0LOCKED_R::new(((self.bits >> 13) & 0x01) != 0)
    }
    #[doc = "Bit 14 - Indicates If CSEN Powered Down During EM23"]
    #[inline(always)]
    pub fn csenlocked(&self) -> CSENLOCKED_R {
        CSENLOCKED_R::new(((self.bits >> 14) & 0x01) != 0)
    }
    #[doc = "Bit 15 - Indicates If LEUART0 Powered Down During EM23"]
    #[inline(always)]
    pub fn leuart0locked(&self) -> LEUART0LOCKED_R {
        LEUART0LOCKED_R::new(((self.bits >> 15) & 0x01) != 0)
    }
}