da14683-pac 0.2.0

Peripheral Access Crate (PAC) for DA14683.
Documentation
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
/*
DISCLAIMER
This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products.
No other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all
applicable laws, including copyright laws.
THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING THIS SOFTWARE, WHETHER EXPRESS, IMPLIED
OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NON-INFRINGEMENT.  ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY
LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE FOR ANY DIRECT,
INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR
ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability
of this software. By using this software, you agree to the additional terms and conditions found by accessing the
following link:
http://www.renesas.com/disclaimer

*/
// Generated from SVD 1.2, with svd2pac 0.6.0 on Thu, 24 Jul 2025 04:45:17 +0000

#![allow(clippy::identity_op)]
#![allow(clippy::module_inception)]
#![allow(clippy::derivable_impls)]
#[allow(unused_imports)]
use crate::common::sealed;
#[allow(unused_imports)]
use crate::common::*;
#[doc = r"Cortex M0 SCB registers"]
unsafe impl ::core::marker::Send for super::Scb {}
unsafe impl ::core::marker::Sync for super::Scb {}
impl super::Scb {
    #[allow(unused)]
    #[inline(always)]
    pub(crate) const fn _svd2pac_as_ptr(&self) -> *mut u8 {
        self.ptr
    }

    #[doc = "CPUID base register"]
    #[inline(always)]
    pub const fn cpuid(&self) -> &'static crate::common::Reg<self::Cpuid_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Cpuid_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(0usize),
            )
        }
    }

    #[doc = "Interrupt control and state register"]
    #[inline(always)]
    pub const fn icsr(&self) -> &'static crate::common::Reg<self::Icsr_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Icsr_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(4usize),
            )
        }
    }

    #[doc = "Application interrupt and reset control register"]
    #[inline(always)]
    pub const fn aircr(&self) -> &'static crate::common::Reg<self::Aircr_SPEC, crate::common::R> {
        unsafe {
            crate::common::Reg::<self::Aircr_SPEC, crate::common::R>::from_ptr(
                self._svd2pac_as_ptr().add(12usize),
            )
        }
    }

    #[doc = "System control register"]
    #[inline(always)]
    pub const fn scr(&self) -> &'static crate::common::Reg<self::Scr_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Scr_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(16usize),
            )
        }
    }

    #[doc = "Configuration and control register"]
    #[inline(always)]
    pub const fn ccr(&self) -> &'static crate::common::Reg<self::Ccr_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Ccr_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(20usize),
            )
        }
    }

    #[doc = "System handler priority register 2"]
    #[inline(always)]
    pub const fn shpr2(&self) -> &'static crate::common::Reg<self::Shpr2_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Shpr2_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(28usize),
            )
        }
    }

    #[doc = "System handler priority register 3"]
    #[inline(always)]
    pub const fn shpr3(&self) -> &'static crate::common::Reg<self::Shpr3_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Shpr3_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(32usize),
            )
        }
    }
}
#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Cpuid_SPEC;
impl crate::sealed::RegSpec for Cpuid_SPEC {
    type DataType = u32;
}

#[doc = "CPUID base register"]
pub type Cpuid = crate::RegValueT<Cpuid_SPEC>;

impl Cpuid {
    #[doc = "REVISION\\[3:0\\] bits (Revision number)"]
    #[inline(always)]
    pub fn revision(
        self,
    ) -> crate::common::RegisterField<0, 0xf, 1, 0, u8, u8, Cpuid_SPEC, crate::common::R> {
        crate::common::RegisterField::<0,0xf,1,0,u8,u8,Cpuid_SPEC,crate::common::R>::from_register(self,0)
    }

    #[doc = "PARTNO\\[11:0\\] bits (Part number of the processor core)"]
    #[inline(always)]
    pub fn partno(
        self,
    ) -> crate::common::RegisterField<4, 0xfff, 1, 0, u16, u16, Cpuid_SPEC, crate::common::R> {
        crate::common::RegisterField::<4,0xfff,1,0,u16,u16,Cpuid_SPEC,crate::common::R>::from_register(self,0)
    }

    #[doc = "CONSTANT\\[3:0\\] bits (Reads as 0xF)"]
    #[inline(always)]
    pub fn constant(
        self,
    ) -> crate::common::RegisterField<16, 0xf, 1, 0, u8, u8, Cpuid_SPEC, crate::common::R> {
        crate::common::RegisterField::<16,0xf,1,0,u8,u8,Cpuid_SPEC,crate::common::R>::from_register(self,0)
    }

    #[doc = "VARIANT\\[3:0\\] bits (Variant number)"]
    #[inline(always)]
    pub fn variant(
        self,
    ) -> crate::common::RegisterField<20, 0xf, 1, 0, u8, u8, Cpuid_SPEC, crate::common::R> {
        crate::common::RegisterField::<20,0xf,1,0,u8,u8,Cpuid_SPEC,crate::common::R>::from_register(self,0)
    }

    #[doc = "IMPLEMENTER\\[7:0\\] bits (Implementer code)"]
    #[inline(always)]
    pub fn implementer(
        self,
    ) -> crate::common::RegisterField<24, 0xff, 1, 0, u8, u8, Cpuid_SPEC, crate::common::R> {
        crate::common::RegisterField::<24,0xff,1,0,u8,u8,Cpuid_SPEC,crate::common::R>::from_register(self,0)
    }
}
impl ::core::default::Default for Cpuid {
    #[inline(always)]
    fn default() -> Cpuid {
        <crate::RegValueT<Cpuid_SPEC> as RegisterValue<_>>::new(1091355136)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Icsr_SPEC;
impl crate::sealed::RegSpec for Icsr_SPEC {
    type DataType = u32;
}

#[doc = "Interrupt control and state register"]
pub type Icsr = crate::RegValueT<Icsr_SPEC>;

impl Icsr {
    #[doc = "VECTACTIVE\\[5:0\\] bits (Active vector)"]
    #[inline(always)]
    pub fn vectactive(
        self,
    ) -> crate::common::RegisterField<0, 0x3f, 1, 0, u8, u8, Icsr_SPEC, crate::common::RW> {
        crate::common::RegisterField::<0,0x3f,1,0,u8,u8,Icsr_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "VECTPENDING\\[5:0\\] bits (Pending vector)"]
    #[inline(always)]
    pub fn vectpending(
        self,
    ) -> crate::common::RegisterField<12, 0x3f, 1, 0, u8, u8, Icsr_SPEC, crate::common::RW> {
        crate::common::RegisterField::<12,0x3f,1,0,u8,u8,Icsr_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "Interrupt pending flag, excluding NMI and Faults"]
    #[inline(always)]
    pub fn isrpending(
        self,
    ) -> crate::common::RegisterFieldBool<22, 1, 0, Icsr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<22, 1, 0, Icsr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "SysTick exception clear-pending bit"]
    #[inline(always)]
    pub fn pendstclr(
        self,
    ) -> crate::common::RegisterFieldBool<25, 1, 0, Icsr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<25, 1, 0, Icsr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "SysTick exception set-pending bit"]
    #[inline(always)]
    pub fn pendstset(
        self,
    ) -> crate::common::RegisterFieldBool<26, 1, 0, Icsr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<26, 1, 0, Icsr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "PendSV clear-pending bit"]
    #[inline(always)]
    pub fn pendsvclr(
        self,
    ) -> crate::common::RegisterFieldBool<27, 1, 0, Icsr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<27, 1, 0, Icsr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "PendSV set-pending bit"]
    #[inline(always)]
    pub fn pendsvset(
        self,
    ) -> crate::common::RegisterFieldBool<28, 1, 0, Icsr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<28, 1, 0, Icsr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "NMI set-pending bit"]
    #[inline(always)]
    pub fn nmipendset(
        self,
    ) -> crate::common::RegisterFieldBool<31, 1, 0, Icsr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<31, 1, 0, Icsr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for Icsr {
    #[inline(always)]
    fn default() -> Icsr {
        <crate::RegValueT<Icsr_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Aircr_SPEC;
impl crate::sealed::RegSpec for Aircr_SPEC {
    type DataType = u32;
}

#[doc = "Application interrupt and reset control register"]
pub type Aircr = crate::RegValueT<Aircr_SPEC>;

impl Aircr {
    #[doc = "Reserved for Debug use"]
    #[inline(always)]
    pub fn vectreset(
        self,
    ) -> crate::common::RegisterFieldBool<0, 1, 0, Aircr_SPEC, crate::common::R> {
        crate::common::RegisterFieldBool::<0, 1, 0, Aircr_SPEC, crate::common::R>::from_register(
            self, 0,
        )
    }

    #[doc = "Reserved for Debug use"]
    #[inline(always)]
    pub fn vectclractive(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, Aircr_SPEC, crate::common::R> {
        crate::common::RegisterFieldBool::<1, 1, 0, Aircr_SPEC, crate::common::R>::from_register(
            self, 0,
        )
    }

    #[doc = "System reset request"]
    #[inline(always)]
    pub fn sysresetreq(
        self,
    ) -> crate::common::RegisterFieldBool<2, 1, 0, Aircr_SPEC, crate::common::R> {
        crate::common::RegisterFieldBool::<2, 1, 0, Aircr_SPEC, crate::common::R>::from_register(
            self, 0,
        )
    }

    #[doc = "Data endianness bit"]
    #[inline(always)]
    pub fn endianess(
        self,
    ) -> crate::common::RegisterFieldBool<15, 1, 0, Aircr_SPEC, crate::common::R> {
        crate::common::RegisterFieldBool::<15, 1, 0, Aircr_SPEC, crate::common::R>::from_register(
            self, 0,
        )
    }

    #[doc = "VECTKEY\\[15:0\\] bits (Register key)"]
    #[inline(always)]
    pub fn vectkey(
        self,
    ) -> crate::common::RegisterField<16, 0xffff, 1, 0, u16, u16, Aircr_SPEC, crate::common::R>
    {
        crate::common::RegisterField::<16,0xffff,1,0,u16,u16,Aircr_SPEC,crate::common::R>::from_register(self,0)
    }
}
impl ::core::default::Default for Aircr {
    #[inline(always)]
    fn default() -> Aircr {
        <crate::RegValueT<Aircr_SPEC> as RegisterValue<_>>::new(4194631680)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Scr_SPEC;
impl crate::sealed::RegSpec for Scr_SPEC {
    type DataType = u32;
}

#[doc = "System control register"]
pub type Scr = crate::RegValueT<Scr_SPEC>;

impl Scr {
    #[doc = "Configures sleep-on-exit when returning from Handler mode to Thread mode"]
    #[inline(always)]
    pub fn sleeponexit(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, Scr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<1, 1, 0, Scr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Controls whether the processor uses sleep or deep sleep"]
    #[inline(always)]
    pub fn sleepdeep(
        self,
    ) -> crate::common::RegisterFieldBool<2, 1, 0, Scr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<2, 1, 0, Scr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Send event on pending bit"]
    #[inline(always)]
    pub fn seveonpend(
        self,
    ) -> crate::common::RegisterFieldBool<4, 1, 0, Scr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<4, 1, 0, Scr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for Scr {
    #[inline(always)]
    fn default() -> Scr {
        <crate::RegValueT<Scr_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Ccr_SPEC;
impl crate::sealed::RegSpec for Ccr_SPEC {
    type DataType = u32;
}

#[doc = "Configuration and control register"]
pub type Ccr = crate::RegValueT<Ccr_SPEC>;

impl Ccr {
    #[doc = "Enables unaligned access traps"]
    #[inline(always)]
    pub fn unalign_trp(
        self,
    ) -> crate::common::RegisterFieldBool<3, 1, 0, Ccr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<3, 1, 0, Ccr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Configures stack alignment on exception entry"]
    #[inline(always)]
    pub fn stkalign(
        self,
    ) -> crate::common::RegisterFieldBool<9, 1, 0, Ccr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<9, 1, 0, Ccr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for Ccr {
    #[inline(always)]
    fn default() -> Ccr {
        <crate::RegValueT<Ccr_SPEC> as RegisterValue<_>>::new(516)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Shpr2_SPEC;
impl crate::sealed::RegSpec for Shpr2_SPEC {
    type DataType = u32;
}

#[doc = "System handler priority register 2"]
pub type Shpr2 = crate::RegValueT<Shpr2_SPEC>;

impl Shpr2 {
    #[doc = "PRI_11\\[7:0\\] bits (Priority of system handler 11, SVCall)"]
    #[inline(always)]
    pub fn pri_11(
        self,
    ) -> crate::common::RegisterField<24, 0xff, 1, 0, u8, u8, Shpr2_SPEC, crate::common::RW> {
        crate::common::RegisterField::<24,0xff,1,0,u8,u8,Shpr2_SPEC,crate::common::RW>::from_register(self,0)
    }
}
impl ::core::default::Default for Shpr2 {
    #[inline(always)]
    fn default() -> Shpr2 {
        <crate::RegValueT<Shpr2_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Shpr3_SPEC;
impl crate::sealed::RegSpec for Shpr3_SPEC {
    type DataType = u32;
}

#[doc = "System handler priority register 3"]
pub type Shpr3 = crate::RegValueT<Shpr3_SPEC>;

impl Shpr3 {
    #[doc = "PRI_14\\[7:0\\] bits (Priority of system handler 14, PendSV)"]
    #[inline(always)]
    pub fn pri_14(
        self,
    ) -> crate::common::RegisterField<16, 0xff, 1, 0, u8, u8, Shpr3_SPEC, crate::common::RW> {
        crate::common::RegisterField::<16,0xff,1,0,u8,u8,Shpr3_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "PRI_15\\[7:0\\] bits (Priority of system handler 15, SysTick exception)"]
    #[inline(always)]
    pub fn pri_15(
        self,
    ) -> crate::common::RegisterField<24, 0xff, 1, 0, u8, u8, Shpr3_SPEC, crate::common::RW> {
        crate::common::RegisterField::<24,0xff,1,0,u8,u8,Shpr3_SPEC,crate::common::RW>::from_register(self,0)
    }
}
impl ::core::default::Default for Shpr3 {
    #[inline(always)]
    fn default() -> Shpr3 {
        <crate::RegValueT<Shpr3_SPEC> as RegisterValue<_>>::new(0)
    }
}