rp2040_pac/spi0/
sspperiphid2.rs

1#[doc = "Register `SSPPERIPHID2` reader"]
2pub type R = crate::R<SSPPERIPHID2_SPEC>;
3#[doc = "Field `DESIGNER1` reader - These bits read back as 0x4"]
4pub type DESIGNER1_R = crate::FieldReader;
5#[doc = "Field `REVISION` reader - These bits return the peripheral revision"]
6pub type REVISION_R = crate::FieldReader;
7impl R {
8    #[doc = "Bits 0:3 - These bits read back as 0x4"]
9    #[inline(always)]
10    pub fn designer1(&self) -> DESIGNER1_R {
11        DESIGNER1_R::new((self.bits & 0x0f) as u8)
12    }
13    #[doc = "Bits 4:7 - These bits return the peripheral revision"]
14    #[inline(always)]
15    pub fn revision(&self) -> REVISION_R {
16        REVISION_R::new(((self.bits >> 4) & 0x0f) as u8)
17    }
18}
19#[doc = "Peripheral identification registers, SSPPeriphID0-3 on page 3-13  
20
21You can [`read`](crate::generic::Reg::read) this register and get [`sspperiphid2::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
22pub struct SSPPERIPHID2_SPEC;
23impl crate::RegisterSpec for SSPPERIPHID2_SPEC {
24    type Ux = u32;
25}
26#[doc = "`read()` method returns [`sspperiphid2::R`](R) reader structure"]
27impl crate::Readable for SSPPERIPHID2_SPEC {}
28#[doc = "`reset()` method sets SSPPERIPHID2 to value 0x34"]
29impl crate::Resettable for SSPPERIPHID2_SPEC {
30    const RESET_VALUE: u32 = 0x34;
31}