atsamd51j/sdhc0/
rr.rs

1#[doc = "Register `RR[%s]` reader"]
2pub type R = crate::R<RrSpec>;
3#[doc = "Field `CMDRESP` reader - Command Response"]
4pub type CmdrespR = crate::FieldReader<u32>;
5impl R {
6    #[doc = "Bits 0:31 - Command Response"]
7    #[inline(always)]
8    pub fn cmdresp(&self) -> CmdrespR {
9        CmdrespR::new(self.bits)
10    }
11}
12#[doc = "Response\n\nYou can [`read`](crate::Reg::read) this register and get [`rr::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
13pub struct RrSpec;
14impl crate::RegisterSpec for RrSpec {
15    type Ux = u32;
16}
17#[doc = "`read()` method returns [`rr::R`](R) reader structure"]
18impl crate::Readable for RrSpec {}
19#[doc = "`reset()` method sets RR[%s]
20to value 0"]
21impl crate::Resettable for RrSpec {
22    const RESET_VALUE: u32 = 0;
23}