stm32f4_staging/stm32f469/fmc/
eccr.rs1pub type R = crate::R<ECCRrs>;
3pub type ECC_R = crate::FieldReader<u32>;
5impl R {
6 #[inline(always)]
8 pub fn ecc(&self) -> ECC_R {
9 ECC_R::new(self.bits)
10 }
11}
12impl core::fmt::Debug for R {
13 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
14 f.debug_struct("ECCR").field("ecc", &self.ecc()).finish()
15 }
16}
17pub struct ECCRrs;
23impl crate::RegisterSpec for ECCRrs {
24 type Ux = u32;
25}
26impl crate::Readable for ECCRrs {}
28impl crate::Resettable for ECCRrs {}