rp2040_pac/spi0/
sspperiphid3.rs
1#[doc = "Register `SSPPERIPHID3` reader"]
2pub type R = crate::R<SSPPERIPHID3_SPEC>;
3#[doc = "Field `CONFIGURATION` reader - These bits read back as 0x00"]
4pub type CONFIGURATION_R = crate::FieldReader;
5impl R {
6 #[doc = "Bits 0:7 - These bits read back as 0x00"]
7 #[inline(always)]
8 pub fn configuration(&self) -> CONFIGURATION_R {
9 CONFIGURATION_R::new((self.bits & 0xff) as u8)
10 }
11}
12#[doc = "Peripheral identification registers, SSPPeriphID0-3 on page 3-13
13
14You can [`read`](crate::generic::Reg::read) this register and get [`sspperiphid3::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
15pub struct SSPPERIPHID3_SPEC;
16impl crate::RegisterSpec for SSPPERIPHID3_SPEC {
17 type Ux = u32;
18}
19#[doc = "`read()` method returns [`sspperiphid3::R`](R) reader structure"]
20impl crate::Readable for SSPPERIPHID3_SPEC {}
21#[doc = "`reset()` method sets SSPPERIPHID3 to value 0"]
22impl crate::Resettable for SSPPERIPHID3_SPEC {
23 const RESET_VALUE: u32 = 0;
24}