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 M1FECR"]
pub type R = crate::R<u32, super::M1FECR>;
#[doc = "Writer for register M1FECR"]
pub type W = crate::W<u32, super::M1FECR>;
#[doc = "Register M1FECR `reset()`'s with value 0"]
impl crate::ResetValue for super::M1FECR {
    type Type = u32;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Reader of field `FEC`"]
pub type FEC_R = crate::R<u32, u32>;
impl R {
    #[doc = "Bits 0:31 - ECC failing code"]
    #[inline(always)]
    pub fn fec(&self) -> FEC_R {
        FEC_R::new((self.bits & 0xffff_ffff) as u32)
    }
}
impl W {}