mimxrt685s_pac/sysctl0/
uuid.rs

1#[doc = "Register `UUID%s` reader"]
2pub type R = crate::R<UuidSpec>;
3#[doc = "Field `uuid` reader - no description available"]
4pub type UuidR = crate::FieldReader<u32>;
5impl R {
6    #[doc = "Bits 0:31 - no description available"]
7    #[inline(always)]
8    pub fn uuid(&self) -> UuidR {
9        UuidR::new(self.bits)
10    }
11}
12#[cfg(feature = "debug")]
13impl core::fmt::Debug for R {
14    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
15        f.debug_struct("UUID").field("uuid", &self.uuid()).finish()
16    }
17}
18#[doc = "UUIDn 32-Bit Data Register\n\nYou can [`read`](crate::Reg::read) this register and get [`uuid::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
19pub struct UuidSpec;
20impl crate::RegisterSpec for UuidSpec {
21    type Ux = u32;
22}
23#[doc = "`read()` method returns [`uuid::R`](R) reader structure"]
24impl crate::Readable for UuidSpec {}
25#[doc = "`reset()` method sets UUID%s to value 0"]
26impl crate::Resettable for UuidSpec {
27    const RESET_VALUE: u32 = 0;
28}