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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#[doc = "Register `OBSTAT` reader"]
pub struct R(crate::R<OBSTAT_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<OBSTAT_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl core::convert::From<crate::R<OBSTAT_SPEC>> for R {
    fn from(reader: crate::R<OBSTAT_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Field `OB_DATA` reader - Store OB_DATA\\[15:0\\]
of option byte block after system reset"]
pub struct OB_DATA_R(crate::FieldReader<u16, u16>);
impl OB_DATA_R {
    pub(crate) fn new(bits: u16) -> Self {
        OB_DATA_R(crate::FieldReader::new(bits))
    }
}
impl core::ops::Deref for OB_DATA_R {
    type Target = crate::FieldReader<u16, u16>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
#[doc = "Field `OB_USER` reader - Store OB_USER byte of option byte block after system reset"]
pub struct OB_USER_R(crate::FieldReader<u8, u8>);
impl OB_USER_R {
    pub(crate) fn new(bits: u8) -> Self {
        OB_USER_R(crate::FieldReader::new(bits))
    }
}
impl core::ops::Deref for OB_USER_R {
    type Target = crate::FieldReader<u8, u8>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
#[doc = "Security Protection level\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum PLEVEL_A {
    #[doc = "0: No protection level"]
    NONE = 0,
    #[doc = "1: Low protection level"]
    LOW = 1,
    #[doc = "3: High protection level"]
    HIGH = 3,
}
impl From<PLEVEL_A> for u8 {
    #[inline(always)]
    fn from(variant: PLEVEL_A) -> Self {
        variant as _
    }
}
#[doc = "Field `PLEVEL` reader - Security Protection level"]
pub struct PLEVEL_R(crate::FieldReader<u8, PLEVEL_A>);
impl PLEVEL_R {
    pub(crate) fn new(bits: u8) -> Self {
        PLEVEL_R(crate::FieldReader::new(bits))
    }
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<PLEVEL_A> {
        match self.bits {
            0 => Some(PLEVEL_A::NONE),
            1 => Some(PLEVEL_A::LOW),
            3 => Some(PLEVEL_A::HIGH),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `NONE`"]
    #[inline(always)]
    pub fn is_none(&self) -> bool {
        **self == PLEVEL_A::NONE
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        **self == PLEVEL_A::LOW
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        **self == PLEVEL_A::HIGH
    }
}
impl core::ops::Deref for PLEVEL_R {
    type Target = crate::FieldReader<u8, PLEVEL_A>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
#[doc = "Option byte read error\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum OBERR_A {
    #[doc = "0: No error with option bytes"]
    NOERROR = 0,
    #[doc = "1: Option bytes and complement bytes do not match"]
    ERROR = 1,
}
impl From<OBERR_A> for bool {
    #[inline(always)]
    fn from(variant: OBERR_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `OBERR` reader - Option byte read error"]
pub struct OBERR_R(crate::FieldReader<bool, OBERR_A>);
impl OBERR_R {
    pub(crate) fn new(bits: bool) -> Self {
        OBERR_R(crate::FieldReader::new(bits))
    }
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> OBERR_A {
        match self.bits {
            false => OBERR_A::NOERROR,
            true => OBERR_A::ERROR,
        }
    }
    #[doc = "Checks if the value of the field is `NOERROR`"]
    #[inline(always)]
    pub fn is_no_error(&self) -> bool {
        **self == OBERR_A::NOERROR
    }
    #[doc = "Checks if the value of the field is `ERROR`"]
    #[inline(always)]
    pub fn is_error(&self) -> bool {
        **self == OBERR_A::ERROR
    }
}
impl core::ops::Deref for OBERR_R {
    type Target = crate::FieldReader<bool, OBERR_A>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl R {
    #[doc = "Bits 16:31 - Store OB_DATA\\[15:0\\]
of option byte block after system reset"]
    #[inline(always)]
    pub fn ob_data(&self) -> OB_DATA_R {
        OB_DATA_R::new(((self.bits >> 16) & 0xffff) as u16)
    }
    #[doc = "Bits 8:15 - Store OB_USER byte of option byte block after system reset"]
    #[inline(always)]
    pub fn ob_user(&self) -> OB_USER_R {
        OB_USER_R::new(((self.bits >> 8) & 0xff) as u8)
    }
    #[doc = "Bits 1:2 - Security Protection level"]
    #[inline(always)]
    pub fn plevel(&self) -> PLEVEL_R {
        PLEVEL_R::new(((self.bits >> 1) & 0x03) as u8)
    }
    #[doc = "Bit 0 - Option byte read error"]
    #[inline(always)]
    pub fn oberr(&self) -> OBERR_R {
        OBERR_R::new((self.bits & 0x01) != 0)
    }
}
#[doc = "Option byte 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 [obstat](index.html) module"]
pub struct OBSTAT_SPEC;
impl crate::RegisterSpec for OBSTAT_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [obstat::R](R) reader structure"]
impl crate::Readable for OBSTAT_SPEC {
    type Reader = R;
}
#[doc = "`reset()` method sets OBSTAT to value 0"]
impl crate::Resettable for OBSTAT_SPEC {
    #[inline(always)]
    fn reset_value() -> Self::Ux {
        0
    }
}