stm32f1_staging/stm32f102/sdio/
resp3.rs

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