rp2040_pac/xip_ssi/
ssi_version_id.rs
1#[doc = "Register `SSI_VERSION_ID` reader"]
2pub type R = crate::R<SSI_VERSION_ID_SPEC>;
3#[doc = "Field `SSI_COMP_VERSION` reader - SNPS component version (format X.YY)"]
4pub type SSI_COMP_VERSION_R = crate::FieldReader<u32>;
5impl R {
6 #[doc = "Bits 0:31 - SNPS component version (format X.YY)"]
7 #[inline(always)]
8 pub fn ssi_comp_version(&self) -> SSI_COMP_VERSION_R {
9 SSI_COMP_VERSION_R::new(self.bits)
10 }
11}
12#[doc = "Version ID
13
14You can [`read`](crate::generic::Reg::read) this register and get [`ssi_version_id::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
15pub struct SSI_VERSION_ID_SPEC;
16impl crate::RegisterSpec for SSI_VERSION_ID_SPEC {
17 type Ux = u32;
18}
19#[doc = "`read()` method returns [`ssi_version_id::R`](R) reader structure"]
20impl crate::Readable for SSI_VERSION_ID_SPEC {}
21#[doc = "`reset()` method sets SSI_VERSION_ID to value 0x3430_312a"]
22impl crate::Resettable for SSI_VERSION_ID_SPEC {
23 const RESET_VALUE: u32 = 0x3430_312a;
24}