1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#[doc = "Register `RESPONSE2` reader"]
pub type R = crate::R<RESPONSE2_SPEC>;
#[doc = "Field `RESPONSE2` reader - Response2"]
pub type RESPONSE2_R = crate::FieldReader<u16>;
#[doc = "Field `RESPONSE3` reader - Response3"]
pub type RESPONSE3_R = crate::FieldReader<u16>;
impl R {
    #[doc = "Bits 0:15 - Response2"]
    #[inline(always)]
    pub fn response2(&self) -> RESPONSE2_R {
        RESPONSE2_R::new((self.bits & 0xffff) as u16)
    }
    #[doc = "Bits 16:31 - Response3"]
    #[inline(always)]
    pub fn response3(&self) -> RESPONSE3_R {
        RESPONSE3_R::new(((self.bits >> 16) & 0xffff) as u16)
    }
}
#[doc = "Response 2 Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`response2::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct RESPONSE2_SPEC;
impl crate::RegisterSpec for RESPONSE2_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`response2::R`](R) reader structure"]
impl crate::Readable for RESPONSE2_SPEC {}
#[doc = "`reset()` method sets RESPONSE2 to value 0"]
impl crate::Resettable for RESPONSE2_SPEC {
    const RESET_VALUE: u32 = 0;
}