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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#[doc = "Register `STATUS` reader"]
pub type R = crate::R<STATUS_SPEC>;
#[doc = "Field `READY` reader - Ready to accept a command"]
pub type READY_R = crate::BitReader;
#[doc = "Field `PRM` reader - Power Reduction Mode"]
pub type PRM_R = crate::BitReader;
#[doc = "Field `LOAD` reader - NVM Page Buffer Active Loading"]
pub type LOAD_R = crate::BitReader;
#[doc = "Field `SUSP` reader - NVM Write Or Erase Operation Is Suspended"]
pub type SUSP_R = crate::BitReader;
#[doc = "Field `AFIRST` reader - BANKA First"]
pub type AFIRST_R = crate::BitReader;
#[doc = "Field `BPDIS` reader - Boot Loader Protection Disable"]
pub type BPDIS_R = crate::BitReader;
#[doc = "Field `BOOTPROT` reader - Boot Loader Protection Size"]
pub type BOOTPROT_R = crate::FieldReader<BOOTPROTSELECT_A>;
#[doc = "Boot Loader Protection Size\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum BOOTPROTSELECT_A {
    #[doc = "15: 0 kbytes"]
    _0 = 15,
    #[doc = "14: 8 kbytes"]
    _8 = 14,
    #[doc = "13: 16 kbytes"]
    _16 = 13,
    #[doc = "12: 24 kbytes"]
    _24 = 12,
    #[doc = "11: 32 kbytes"]
    _32 = 11,
    #[doc = "10: 40 kbytes"]
    _40 = 10,
    #[doc = "9: 48 kbytes"]
    _48 = 9,
    #[doc = "8: 56 kbytes"]
    _56 = 8,
    #[doc = "7: 64 kbytes"]
    _64 = 7,
    #[doc = "6: 72 kbytes"]
    _72 = 6,
    #[doc = "5: 80 kbytes"]
    _80 = 5,
    #[doc = "4: 88 kbytes"]
    _88 = 4,
    #[doc = "3: 96 kbytes"]
    _96 = 3,
    #[doc = "2: 104 kbytes"]
    _104 = 2,
    #[doc = "1: 112 kbytes"]
    _112 = 1,
    #[doc = "0: 120 kbytes"]
    _120 = 0,
}
impl From<BOOTPROTSELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: BOOTPROTSELECT_A) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for BOOTPROTSELECT_A {
    type Ux = u8;
}
impl BOOTPROT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> BOOTPROTSELECT_A {
        match self.bits {
            15 => BOOTPROTSELECT_A::_0,
            14 => BOOTPROTSELECT_A::_8,
            13 => BOOTPROTSELECT_A::_16,
            12 => BOOTPROTSELECT_A::_24,
            11 => BOOTPROTSELECT_A::_32,
            10 => BOOTPROTSELECT_A::_40,
            9 => BOOTPROTSELECT_A::_48,
            8 => BOOTPROTSELECT_A::_56,
            7 => BOOTPROTSELECT_A::_64,
            6 => BOOTPROTSELECT_A::_72,
            5 => BOOTPROTSELECT_A::_80,
            4 => BOOTPROTSELECT_A::_88,
            3 => BOOTPROTSELECT_A::_96,
            2 => BOOTPROTSELECT_A::_104,
            1 => BOOTPROTSELECT_A::_112,
            0 => BOOTPROTSELECT_A::_120,
            _ => unreachable!(),
        }
    }
    #[doc = "0 kbytes"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == BOOTPROTSELECT_A::_0
    }
    #[doc = "8 kbytes"]
    #[inline(always)]
    pub fn is_8(&self) -> bool {
        *self == BOOTPROTSELECT_A::_8
    }
    #[doc = "16 kbytes"]
    #[inline(always)]
    pub fn is_16(&self) -> bool {
        *self == BOOTPROTSELECT_A::_16
    }
    #[doc = "24 kbytes"]
    #[inline(always)]
    pub fn is_24(&self) -> bool {
        *self == BOOTPROTSELECT_A::_24
    }
    #[doc = "32 kbytes"]
    #[inline(always)]
    pub fn is_32(&self) -> bool {
        *self == BOOTPROTSELECT_A::_32
    }
    #[doc = "40 kbytes"]
    #[inline(always)]
    pub fn is_40(&self) -> bool {
        *self == BOOTPROTSELECT_A::_40
    }
    #[doc = "48 kbytes"]
    #[inline(always)]
    pub fn is_48(&self) -> bool {
        *self == BOOTPROTSELECT_A::_48
    }
    #[doc = "56 kbytes"]
    #[inline(always)]
    pub fn is_56(&self) -> bool {
        *self == BOOTPROTSELECT_A::_56
    }
    #[doc = "64 kbytes"]
    #[inline(always)]
    pub fn is_64(&self) -> bool {
        *self == BOOTPROTSELECT_A::_64
    }
    #[doc = "72 kbytes"]
    #[inline(always)]
    pub fn is_72(&self) -> bool {
        *self == BOOTPROTSELECT_A::_72
    }
    #[doc = "80 kbytes"]
    #[inline(always)]
    pub fn is_80(&self) -> bool {
        *self == BOOTPROTSELECT_A::_80
    }
    #[doc = "88 kbytes"]
    #[inline(always)]
    pub fn is_88(&self) -> bool {
        *self == BOOTPROTSELECT_A::_88
    }
    #[doc = "96 kbytes"]
    #[inline(always)]
    pub fn is_96(&self) -> bool {
        *self == BOOTPROTSELECT_A::_96
    }
    #[doc = "104 kbytes"]
    #[inline(always)]
    pub fn is_104(&self) -> bool {
        *self == BOOTPROTSELECT_A::_104
    }
    #[doc = "112 kbytes"]
    #[inline(always)]
    pub fn is_112(&self) -> bool {
        *self == BOOTPROTSELECT_A::_112
    }
    #[doc = "120 kbytes"]
    #[inline(always)]
    pub fn is_120(&self) -> bool {
        *self == BOOTPROTSELECT_A::_120
    }
}
impl R {
    #[doc = "Bit 0 - Ready to accept a command"]
    #[inline(always)]
    pub fn ready(&self) -> READY_R {
        READY_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Power Reduction Mode"]
    #[inline(always)]
    pub fn prm(&self) -> PRM_R {
        PRM_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - NVM Page Buffer Active Loading"]
    #[inline(always)]
    pub fn load(&self) -> LOAD_R {
        LOAD_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - NVM Write Or Erase Operation Is Suspended"]
    #[inline(always)]
    pub fn susp(&self) -> SUSP_R {
        SUSP_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - BANKA First"]
    #[inline(always)]
    pub fn afirst(&self) -> AFIRST_R {
        AFIRST_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Boot Loader Protection Disable"]
    #[inline(always)]
    pub fn bpdis(&self) -> BPDIS_R {
        BPDIS_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bits 8:11 - Boot Loader Protection Size"]
    #[inline(always)]
    pub fn bootprot(&self) -> BOOTPROT_R {
        BOOTPROT_R::new(((self.bits >> 8) & 0x0f) as u8)
    }
}
#[doc = "Status\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`status::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct STATUS_SPEC;
impl crate::RegisterSpec for STATUS_SPEC {
    type Ux = u16;
}
#[doc = "`read()` method returns [`status::R`](R) reader structure"]
impl crate::Readable for STATUS_SPEC {}
#[doc = "`reset()` method sets STATUS to value 0"]
impl crate::Resettable for STATUS_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}