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
#[doc = "Register `MSR6` reader"]
pub struct R(crate::R<MSR6_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<MSR6_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<MSR6_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<MSR6_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Field `MTIMESTAMP` reader - Timer value"]
pub type MTIMESTAMP_R = crate::FieldReader<u16, u16>;
#[doc = "Field `MDLC` reader - Mailbox Data Length Code"]
pub type MDLC_R = crate::FieldReader<u8, u8>;
#[doc = "Field `MRTR` reader - Mailbox Remote Transmission Request"]
pub type MRTR_R = crate::BitReader<bool>;
#[doc = "Field `MABT` reader - Mailbox Message Abort"]
pub type MABT_R = crate::BitReader<bool>;
#[doc = "Field `MRDY` reader - Mailbox Ready"]
pub type MRDY_R = crate::BitReader<bool>;
#[doc = "Field `MMI` reader - Mailbox Message Ignored"]
pub type MMI_R = crate::BitReader<bool>;
impl R {
    #[doc = "Bits 0:15 - Timer value"]
    #[inline(always)]
    pub fn mtimestamp(&self) -> MTIMESTAMP_R {
        MTIMESTAMP_R::new((self.bits & 0xffff) as u16)
    }
    #[doc = "Bits 16:19 - Mailbox Data Length Code"]
    #[inline(always)]
    pub fn mdlc(&self) -> MDLC_R {
        MDLC_R::new(((self.bits >> 16) & 0x0f) as u8)
    }
    #[doc = "Bit 20 - Mailbox Remote Transmission Request"]
    #[inline(always)]
    pub fn mrtr(&self) -> MRTR_R {
        MRTR_R::new(((self.bits >> 20) & 1) != 0)
    }
    #[doc = "Bit 22 - Mailbox Message Abort"]
    #[inline(always)]
    pub fn mabt(&self) -> MABT_R {
        MABT_R::new(((self.bits >> 22) & 1) != 0)
    }
    #[doc = "Bit 23 - Mailbox Ready"]
    #[inline(always)]
    pub fn mrdy(&self) -> MRDY_R {
        MRDY_R::new(((self.bits >> 23) & 1) != 0)
    }
    #[doc = "Bit 24 - Mailbox Message Ignored"]
    #[inline(always)]
    pub fn mmi(&self) -> MMI_R {
        MMI_R::new(((self.bits >> 24) & 1) != 0)
    }
}
#[doc = "Mailbox Status Register (MB = 6)\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 [msr6](index.html) module"]
pub struct MSR6_SPEC;
impl crate::RegisterSpec for MSR6_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [msr6::R](R) reader structure"]
impl crate::Readable for MSR6_SPEC {
    type Reader = R;
}
#[doc = "`reset()` method sets MSR6 to value 0"]
impl crate::Resettable for MSR6_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}