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
#[doc = "Register `UASR` reader"]
pub type R = crate::R<UASR_SPEC>;
#[doc = "Field `URAT` reader - Undefined Register Access Trace"]
pub type URAT_R = crate::FieldReader<URATSELECT_A>;
#[doc = "Undefined Register Access Trace\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum URATSELECT_A {
    #[doc = "0: Unspecified structure member set to one detected when the descriptor is loaded"]
    UNSPEC_STRUCT_MEMBER = 0,
    #[doc = "1: CFG modified during active monitoring"]
    CFG_MODIFIED = 1,
    #[doc = "2: DSCR modified during active monitoring"]
    DSCR_MODIFIED = 2,
    #[doc = "3: HASH modified during active monitoring"]
    HASH_MODIFIED = 3,
    #[doc = "4: Write-only register read access"]
    READ_ACCESS = 4,
}
impl From<URATSELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: URATSELECT_A) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for URATSELECT_A {
    type Ux = u8;
}
impl URAT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<URATSELECT_A> {
        match self.bits {
            0 => Some(URATSELECT_A::UNSPEC_STRUCT_MEMBER),
            1 => Some(URATSELECT_A::CFG_MODIFIED),
            2 => Some(URATSELECT_A::DSCR_MODIFIED),
            3 => Some(URATSELECT_A::HASH_MODIFIED),
            4 => Some(URATSELECT_A::READ_ACCESS),
            _ => None,
        }
    }
    #[doc = "Unspecified structure member set to one detected when the descriptor is loaded"]
    #[inline(always)]
    pub fn is_unspec_struct_member(&self) -> bool {
        *self == URATSELECT_A::UNSPEC_STRUCT_MEMBER
    }
    #[doc = "CFG modified during active monitoring"]
    #[inline(always)]
    pub fn is_cfg_modified(&self) -> bool {
        *self == URATSELECT_A::CFG_MODIFIED
    }
    #[doc = "DSCR modified during active monitoring"]
    #[inline(always)]
    pub fn is_dscr_modified(&self) -> bool {
        *self == URATSELECT_A::DSCR_MODIFIED
    }
    #[doc = "HASH modified during active monitoring"]
    #[inline(always)]
    pub fn is_hash_modified(&self) -> bool {
        *self == URATSELECT_A::HASH_MODIFIED
    }
    #[doc = "Write-only register read access"]
    #[inline(always)]
    pub fn is_read_access(&self) -> bool {
        *self == URATSELECT_A::READ_ACCESS
    }
}
impl R {
    #[doc = "Bits 0:2 - Undefined Register Access Trace"]
    #[inline(always)]
    pub fn urat(&self) -> URAT_R {
        URAT_R::new((self.bits & 7) as u8)
    }
}
#[doc = "Undefined Access Status\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`uasr::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct UASR_SPEC;
impl crate::RegisterSpec for UASR_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`uasr::R`](R) reader structure"]
impl crate::Readable for UASR_SPEC {}
#[doc = "`reset()` method sets UASR to value 0"]
impl crate::Resettable for UASR_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}