stm32f1_staging/stm32f101/fsmc/
eccr3.rs

1///Register `ECCR3` reader
2pub type R = crate::R<ECCR3rs>;
3///Field `ECCx` reader - ECCx
4pub type ECCX_R = crate::FieldReader<u32>;
5impl R {
6    ///Bits 0:31 - ECCx
7    #[inline(always)]
8    pub fn eccx(&self) -> ECCX_R {
9        ECCX_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("ECCR3").field("eccx", &self.eccx()).finish()
15    }
16}
17/**ECC result register 3
18
19You can [`read`](crate::Reg::read) this register and get [`eccr3::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).
20
21See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F101.html#FSMC:ECCR3)*/
22pub struct ECCR3rs;
23impl crate::RegisterSpec for ECCR3rs {
24    type Ux = u32;
25}
26///`read()` method returns [`eccr3::R`](R) reader structure
27impl crate::Readable for ECCR3rs {}
28///`reset()` method sets ECCR3 to value 0
29impl crate::Resettable for ECCR3rs {}