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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#[doc = "Reader of register BB_RADIOCNTL0"]
pub type R = crate::R<u32, super::BB_RADIOCNTL0>;
#[doc = "Writer for register BB_RADIOCNTL0"]
pub type W = crate::W<u32, super::BB_RADIOCNTL0>;
#[doc = "Register BB_RADIOCNTL0 `reset()`'s with value 0x02"]
impl crate::ResetValue for super::BB_RADIOCNTL0 {
    type Type = u32;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0x02
    }
}
#[doc = "Pointer to the buffer containing data to be transferred to or received from the SPI port\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u16)]
pub enum SPIPTR_A {
    #[doc = "0: SPI pointer"]
    SPIPTR_0 = 0,
}
impl From<SPIPTR_A> for u16 {
    #[inline(always)]
    fn from(variant: SPIPTR_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `SPIPTR`"]
pub type SPIPTR_R = crate::R<u16, SPIPTR_A>;
impl SPIPTR_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> crate::Variant<u16, SPIPTR_A> {
        use crate::Variant::*;
        match self.bits {
            0 => Val(SPIPTR_A::SPIPTR_0),
            i => Res(i),
        }
    }
    #[doc = "Checks if the value of the field is `SPIPTR_0`"]
    #[inline(always)]
    pub fn is_spiptr_0(&self) -> bool {
        *self == SPIPTR_A::SPIPTR_0
    }
}
#[doc = "Write proxy for field `SPIPTR`"]
pub struct SPIPTR_W<'a> {
    w: &'a mut W,
}
impl<'a> SPIPTR_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SPIPTR_A) -> &'a mut W {
        unsafe { self.bits(variant.into()) }
    }
    #[doc = "SPI pointer"]
    #[inline(always)]
    pub fn spiptr_0(self) -> &'a mut W {
        self.variant(SPIPTR_A::SPIPTR_0)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u16) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0xffff << 16)) | (((value as u32) & 0xffff) << 16);
        self.w
    }
}
#[doc = "SPI clock frequency\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum SPIFREQ_A {
    #[doc = "0: SPI clock is master1_gclk / 3"]
    SPIFREQ_0 = 0,
    #[doc = "1: NA"]
    SPIFREQ_1 = 1,
    #[doc = "2: NA"]
    SPIFREQ_2 = 2,
    #[doc = "3: NA"]
    SPIFREQ_3 = 3,
}
impl From<SPIFREQ_A> for u8 {
    #[inline(always)]
    fn from(variant: SPIFREQ_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `SPIFREQ`"]
pub type SPIFREQ_R = crate::R<u8, SPIFREQ_A>;
impl SPIFREQ_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SPIFREQ_A {
        match self.bits {
            0 => SPIFREQ_A::SPIFREQ_0,
            1 => SPIFREQ_A::SPIFREQ_1,
            2 => SPIFREQ_A::SPIFREQ_2,
            3 => SPIFREQ_A::SPIFREQ_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `SPIFREQ_0`"]
    #[inline(always)]
    pub fn is_spifreq_0(&self) -> bool {
        *self == SPIFREQ_A::SPIFREQ_0
    }
    #[doc = "Checks if the value of the field is `SPIFREQ_1`"]
    #[inline(always)]
    pub fn is_spifreq_1(&self) -> bool {
        *self == SPIFREQ_A::SPIFREQ_1
    }
    #[doc = "Checks if the value of the field is `SPIFREQ_2`"]
    #[inline(always)]
    pub fn is_spifreq_2(&self) -> bool {
        *self == SPIFREQ_A::SPIFREQ_2
    }
    #[doc = "Checks if the value of the field is `SPIFREQ_3`"]
    #[inline(always)]
    pub fn is_spifreq_3(&self) -> bool {
        *self == SPIFREQ_A::SPIFREQ_3
    }
}
#[doc = "Write proxy for field `SPIFREQ`"]
pub struct SPIFREQ_W<'a> {
    w: &'a mut W,
}
impl<'a> SPIFREQ_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SPIFREQ_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "SPI clock is master1_gclk / 3"]
    #[inline(always)]
    pub fn spifreq_0(self) -> &'a mut W {
        self.variant(SPIFREQ_A::SPIFREQ_0)
    }
    #[doc = "NA"]
    #[inline(always)]
    pub fn spifreq_1(self) -> &'a mut W {
        self.variant(SPIFREQ_A::SPIFREQ_1)
    }
    #[doc = "NA"]
    #[inline(always)]
    pub fn spifreq_2(self) -> &'a mut W {
        self.variant(SPIFREQ_A::SPIFREQ_2)
    }
    #[doc = "NA"]
    #[inline(always)]
    pub fn spifreq_3(self) -> &'a mut W {
        self.variant(SPIFREQ_A::SPIFREQ_3)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 4)) | (((value as u32) & 0x03) << 4);
        self.w
    }
}
#[doc = "SPI transfer status\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SPICOMP_A {
    #[doc = "0: Indicates SPI transfer in progress"]
    SPICOMP_0 = 0,
    #[doc = "1: Indicates SPI transfer is completed. RW-BLE core is ready to start a new transfer"]
    SPICOMP_1 = 1,
}
impl From<SPICOMP_A> for bool {
    #[inline(always)]
    fn from(variant: SPICOMP_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `SPICOMP`"]
pub type SPICOMP_R = crate::R<bool, SPICOMP_A>;
impl SPICOMP_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SPICOMP_A {
        match self.bits {
            false => SPICOMP_A::SPICOMP_0,
            true => SPICOMP_A::SPICOMP_1,
        }
    }
    #[doc = "Checks if the value of the field is `SPICOMP_0`"]
    #[inline(always)]
    pub fn is_spicomp_0(&self) -> bool {
        *self == SPICOMP_A::SPICOMP_0
    }
    #[doc = "Checks if the value of the field is `SPICOMP_1`"]
    #[inline(always)]
    pub fn is_spicomp_1(&self) -> bool {
        *self == SPICOMP_A::SPICOMP_1
    }
}
#[doc = "Start SPI transfer when writing a 1\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SPIGO_A {
    #[doc = "0: `0`"]
    SPIGO_0 = 0,
    #[doc = "1: Triggers the SPI transfer"]
    SPIGO_1 = 1,
}
impl From<SPIGO_A> for bool {
    #[inline(always)]
    fn from(variant: SPIGO_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `SPIGO`"]
pub type SPIGO_R = crate::R<bool, SPIGO_A>;
impl SPIGO_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SPIGO_A {
        match self.bits {
            false => SPIGO_A::SPIGO_0,
            true => SPIGO_A::SPIGO_1,
        }
    }
    #[doc = "Checks if the value of the field is `SPIGO_0`"]
    #[inline(always)]
    pub fn is_spigo_0(&self) -> bool {
        *self == SPIGO_A::SPIGO_0
    }
    #[doc = "Checks if the value of the field is `SPIGO_1`"]
    #[inline(always)]
    pub fn is_spigo_1(&self) -> bool {
        *self == SPIGO_A::SPIGO_1
    }
}
#[doc = "Write proxy for field `SPIGO`"]
pub struct SPIGO_W<'a> {
    w: &'a mut W,
}
impl<'a> SPIGO_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SPIGO_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "`0`"]
    #[inline(always)]
    pub fn spigo_0(self) -> &'a mut W {
        self.variant(SPIGO_A::SPIGO_0)
    }
    #[doc = "Triggers the SPI transfer"]
    #[inline(always)]
    pub fn spigo_1(self) -> &'a mut W {
        self.variant(SPIGO_A::SPIGO_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !0x01) | ((value as u32) & 0x01);
        self.w
    }
}
impl R {
    #[doc = "Bits 16:31 - Pointer to the buffer containing data to be transferred to or received from the SPI port"]
    #[inline(always)]
    pub fn spiptr(&self) -> SPIPTR_R {
        SPIPTR_R::new(((self.bits >> 16) & 0xffff) as u16)
    }
    #[doc = "Bits 4:5 - SPI clock frequency"]
    #[inline(always)]
    pub fn spifreq(&self) -> SPIFREQ_R {
        SPIFREQ_R::new(((self.bits >> 4) & 0x03) as u8)
    }
    #[doc = "Bit 1 - SPI transfer status"]
    #[inline(always)]
    pub fn spicomp(&self) -> SPICOMP_R {
        SPICOMP_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bit 0 - Start SPI transfer when writing a 1"]
    #[inline(always)]
    pub fn spigo(&self) -> SPIGO_R {
        SPIGO_R::new((self.bits & 0x01) != 0)
    }
}
impl W {
    #[doc = "Bits 16:31 - Pointer to the buffer containing data to be transferred to or received from the SPI port"]
    #[inline(always)]
    pub fn spiptr(&mut self) -> SPIPTR_W {
        SPIPTR_W { w: self }
    }
    #[doc = "Bits 4:5 - SPI clock frequency"]
    #[inline(always)]
    pub fn spifreq(&mut self) -> SPIFREQ_W {
        SPIFREQ_W { w: self }
    }
    #[doc = "Bit 0 - Start SPI transfer when writing a 1"]
    #[inline(always)]
    pub fn spigo(&mut self) -> SPIGO_W {
        SPIGO_W { w: self }
    }
}