esp32s2/timg0/
lactlo.rs

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