stm32f1_staging/stm32f103/sdio/
respcmd.rs1pub type R = crate::R<RESPCMDrs>;
3pub type RESPCMD_R = crate::FieldReader;
5impl R {
6 #[inline(always)]
8 pub fn respcmd(&self) -> RESPCMD_R {
9 RESPCMD_R::new((self.bits & 0x3f) as u8)
10 }
11}
12impl core::fmt::Debug for R {
13 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
14 f.debug_struct("RESPCMD").field("respcmd", &self.respcmd()).finish()
15 }
16}
17pub struct RESPCMDrs;
23impl crate::RegisterSpec for RESPCMDrs {
24 type Ux = u32;
25}
26impl crate::Readable for RESPCMDrs {}
28impl crate::Resettable for RESPCMDrs {}