atsamd51p19a/sdhc0/rr.rs
1#[doc = "Reader of register RR[%s]"]
2pub type R = crate::R<u32, super::RR>;
3#[doc = "Reader of field `CMDRESP`"]
4pub type CMDRESP_R = crate::R<u32, u32>;
5impl R {
6 #[doc = "Bits 0:31 - Command Response"]
7 #[inline(always)]
8 pub fn cmdresp(&self) -> CMDRESP_R {
9 CMDRESP_R::new((self.bits & 0xffff_ffff) as u32)
10 }
11}