1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[doc = "Reader of register M3FDRH"]
pub type R = crate::R<u32, super::M3FDRH>;
#[doc = "Writer for register M3FDRH"]
pub type W = crate::W<u32, super::M3FDRH>;
#[doc = "Register M3FDRH `reset()`'s with value 0"]
impl crate::ResetValue for super::M3FDRH {
    type Type = u32;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Reader of field `FDATAH`"]
pub type FDATAH_R = crate::R<u32, u32>;
impl R {
    #[doc = "Bits 0:31 - ECC failing data high"]
    #[inline(always)]
    pub fn fdatah(&self) -> FDATAH_R {
        FDATAH_R::new((self.bits & 0xffff_ffff) as u32)
    }
}
impl W {}